This has nothing to do with nesting IF()
functions or rollups (conditional or otherwise). The problem here is that by pulling the name of the meal selected in {Leftover from Meal}
, you’ll create a circular reference: you want the {Name}
formula to pull from {Leftover from Meal}
, but that’s linking back to a record in the same table, whose name may be affected by the link in {Leftover from Meal}
, etc.
To solve this, make {Leftover from Meal}
a link to the same table used in the {Meal Prep}
field. Then your {Name}
field formula can be this:
{Meal Type} & ": " & IF({Meal Prep}, {Meal Prep}, "Leftovers (" & {Leftover from Meal} & ")")

This has nothing to do with nesting IF()
functions or rollups (conditional or otherwise). The problem here is that by pulling the name of the meal selected in {Leftover from Meal}
, you’ll create a circular reference: you want the {Name}
formula to pull from {Leftover from Meal}
, but that’s linking back to a record in the same table, whose name may be affected by the link in {Leftover from Meal}
, etc.
To solve this, make {Leftover from Meal}
a link to the same table used in the {Meal Prep}
field. Then your {Name}
field formula can be this:
{Meal Type} & ": " & IF({Meal Prep}, {Meal Prep}, "Leftovers (" & {Leftover from Meal} & ")")

@Justin_Barrett
It looks like @Emma_MH is using a same-table link for the leftovers field. I don’t know if that causes a possible circular reference error or not, but wanted to point it out just in case.
EDIT - I suppose I should read your whole post, and not just your formula, before I go trying to make corrections :slightly_smiling_face:
This has nothing to do with nesting IF()
functions or rollups (conditional or otherwise). The problem here is that by pulling the name of the meal selected in {Leftover from Meal}
, you’ll create a circular reference: you want the {Name}
formula to pull from {Leftover from Meal}
, but that’s linking back to a record in the same table, whose name may be affected by the link in {Leftover from Meal}
, etc.
To solve this, make {Leftover from Meal}
a link to the same table used in the {Meal Prep}
field. Then your {Name}
field formula can be this:
{Meal Type} & ": " & IF({Meal Prep}, {Meal Prep}, "Leftovers (" & {Leftover from Meal} & ")")

THANK YOU!!! That solved it. Appreciate the help!
THANK YOU!!! That solved it. Appreciate the help!
@Emma_MH – I think you accidentally marked my response as the “Solution”. Could you please mark @Justin_Barrett’s response as the “Solution”, for the sake of future forum users? Thanks.