Sounds like you want to use SWITCH()
instead of a nested IF()
statement since you’re checking the same variable against multiple possible values:
SWITCH(
{Item Type},
"Watch", CONCATENATE({Field 1}, " ", {Field 2}, " ", {Field 3}),
"Necklace", CONCATENATE({Field 4}, " ", {Field 5}, " ", {Field 6}),
"3rd item type", CONCATENATE(...),
"4th item type", CONCATENATE(...),
"5th item type", CONCATENATE(...),
"some sort of default value if none of the above item types match"
)
Sounds like you want to use SWITCH()
instead of a nested IF()
statement since you’re checking the same variable against multiple possible values:
SWITCH(
{Item Type},
"Watch", CONCATENATE({Field 1}, " ", {Field 2}, " ", {Field 3}),
"Necklace", CONCATENATE({Field 4}, " ", {Field 5}, " ", {Field 6}),
"3rd item type", CONCATENATE(...),
"4th item type", CONCATENATE(...),
"5th item type", CONCATENATE(...),
"some sort of default value if none of the above item types match"
)
Thanks for the tip! I’ll play around with this tomorrow. :thumbs_up: I’m also going to check out your podcast.
Update: So far this is working beautifully. Thanks again & the podcast is great. :thumbs_up: