Hello,
I am currently trying to achieve the following: When I select the radio button (1). It should add the $25.00 processing fee to the deduction amount in the table (2).
This is my current formula.
Any help would be appreciated.
Hello,
I am currently trying to achieve the following: When I select the radio button (1). It should add the $25.00 processing fee to the deduction amount in the table (2).
This is my current formula.
Any help would be appreciated.
Will this work?
Set a numerical value for each of the radio button options:
Then your formula in the table just needs to check if the radio button is equal to the specific row in the table, if it is, return the processing fee, otherwise return zero - then add that to the other value: =IF(Select_Processing_Fee=ROW(),Processing_Fee,0)+Deduction_Amount
It seems to work in a quick mock-up:
Fantastic! Have a great day!
Hi Matthew,
Just following up on this. The formula worked great for the main deduction amount. What I would like to do is add $25 to the current deduction amount.
My current Deduction Amount (Grand Total) is $600 and I need to pay it back in 3 payments of 200 each.
If I select Second Pay Period it adds $25 to that $200 value.
With the formula provided it adds $25 to the grand total deduction amount and if I try changing these values it will reset to 600 instead of 200.
Any advice would be appreciated.
Is the Deduction_Amount field calculating from the values in the table? If so, then I think we have some circular references - the values in the table are calculating from the Deduction_Amount field and the Deduction_Amount field is calculating from the values in the table. That's going to result in some weird behavior.
The formula I tested and shared were assuming that both the Processing_Fee field and the Deduction_Amount field were either entered manually or calculated external to the table, but if either of those is calculating off of the table itself, this will result in circular calcualtions.