Its possible, but you may consider giving the dance styles its own table. That table would have one field for the name (Streedance, Breaking, and Contemporary) and another field for price ($40, $50, $60)
If you convert your existing multiple select
field into a link to another record
field a new table will be made for you. Then you could use a rollup
field to SUM(values)
of all the prices for each record’s selected dance style(s).
If you would still prefer to use a multiple select
field, you would need to write a formula like this:
IF(FIND("streetdance", {Multiple Select Field}), 40, 0) +
IF(FIND("breaking", {Multiple Select Field}), 50, 0) +
IF(FIND("contemporary", {Multiple Select Field}), 60, 0)
If you want a discount for multiple selections, it is still possible, but would require a more complex formula.
Its possible, but you may consider giving the dance styles its own table. That table would have one field for the name (Streedance, Breaking, and Contemporary) and another field for price ($40, $50, $60)
If you convert your existing multiple select
field into a link to another record
field a new table will be made for you. Then you could use a rollup
field to SUM(values)
of all the prices for each record’s selected dance style(s).
If you would still prefer to use a multiple select
field, you would need to write a formula like this:
IF(FIND("streetdance", {Multiple Select Field}), 40, 0) +
IF(FIND("breaking", {Multiple Select Field}), 50, 0) +
IF(FIND("contemporary", {Multiple Select Field}), 60, 0)
Thank you so much, this formula works well :star_struck: