Nov 06, 2019 08:15 AM
Hi, can you please help me? I hope I can explain it well.
Field 1 Single Select (SGL,DBL,TPL)
Field 2 Price for SGL
Field 3 Price for DBL
Field 4 Price for TPL
Field 5- I want to pull the information from either field 2,3 or 4 depending on what was selected on Field 1. If I chose SGL, I want to pull the price for SGL.
Angel
Nov 06, 2019 04:31 PM
Here’s one option for the {Field 5}
formula:
SWITCH({Field 1}, "SGL", {Field 2}, "DBL", {Field 3}, "TPL", {Field 4})
Nov 22, 2019 04:44 PM
Thank you very much Justin, I will try it and let you know.