How do I calculate the topping price when a customer chooses more than one topping?

Hi…
I’m making a food app
There are several food menus that offer additional toppings, each topping has a different price.
My question is, how do I calculate the topping price when a customer chooses more than one topping?


Use a split text column to turn the selected toppings into an array, then use this to create a multiple relation to your Toppings table, then do a rollup->sum of the price through that relation.

1 Like

thank’s @Darren_Murphy

This topic was automatically closed 24 hours after the last reply. New replies are no longer allowed.