Hmm, could you provide some example data and your desired output for said data?
Hmm, could you provide some example data and your desired output for said data?
For example, I have three types of tax status.
So when I select type A, it should counted as a formula,
when I select type B, it should be counted as b formula,
I select type C, it should be count as c formula.
Hope this could help, thank you so much.
For example, I have three types of tax status.
So when I select type A, it should counted as a formula,
when I select type B, it should be counted as b formula,
I select type C, it should be count as c formula.
Hope this could help, thank you so much.
Oh sure, here

Output
field formula:
SWITCH(
{Tax Status},
"Type A", {Base Number} + 1,
"Type B", {Base Number} + 2,
"Type C", {Base Number} + 3
)
Oh sure, here

Output
field formula:
SWITCH(
{Tax Status},
"Type A", {Base Number} + 1,
"Type B", {Base Number} + 2,
"Type C", {Base Number} + 3
)
Thank you so much!!
It works.