Hmm, if this example makes sense:
- User selects Proto LDP 7.5%, so an additional 7.5% charge gets applied
- User selects, so an additional 25% charge gets applied
Then you could try using a SWITCH formula for this:
Value *
SWITCH(
Type,
"Proto LDP 7.5%", 1.075,
"Proto LDP 25%", 1.25
)
I'm not entirely sure what your business logic is, but you should be able to use SWITCH to handle what you need!