Skip to main content

Formula to calc rating based on other fields

  • November 17, 2020
  • 1 reply
  • 20 views

Hi. New to Airtable. Looking to add a formula field that calculates a value (rating - via stars) based on data in other fields. In the attached example, I’d like the ‘Expected Rating’ field to return a star rating (via star emoji) based on the completeness of the other fields.

1 reply

JonathanBowen
Forum|alt.badge.img+18

Hi @VC_Hacks - you can do something like this:

REPT('⭐️', IF({Field One}, 1, 0) + IF({Field Two}, 1, 0) + IF({Field Three}, 1, 0))