I’ve tried copying and adapting examples from this forum (many thanks all to those who contribute!) and I’ve tried writing formulas from scratch… nothing seems to work!
I’m using a very simple base to record my daily step count. I have a field called “Steps” and I want to include a quick visual indication of what my step count is for the day (actually, I’ll be using icons, but it’s simpler to include words in my example).
IF(
{Steps}>19999,
“Yay”,
IF(
{Steps}>9999,
“OK”,
IF(
{Steps}>1,
“No comment”
)
)
)