I'm new to coding so I'm a bit out of my depth.
I have a "Multiple Select" field and I'm trying to create a new field which counts how many selections were made for each record.
The items are given a rating depending on how many selections they can tick.
I have the below but I'm certain I'm making lots of very basic errors.
Any suggestions would be greatly appreciated.
{Sustainability Rating} = "n",
(("n" = 0)
IF({Sustainability Checklist}, "Is the item plastic free?", "n"+1),
IF({Sustainability Checklist}, "Is the item made from recycled material?", "n"+1),
IF({Sustainability Checklist}, "Is the item fully recyclable?", "n"+1)
)