Apr 25 2024 08:42 PM
hi!
need some help.
I am trying to create a formula that will do the following
if answered yes then will calculate a percentage of another cell to equal a total number used to calculate commission.
for example if house loan is typed yes then the overall commission is x's 40% to = net income made
Apr 25 2024 10:42 PM
SolutionYou can use the following formula to achieve what you described:
=IF(A1="Yes", B1 * 0.4, 0)
In this formula:
Make sure to adjust the cell references (A1 and B1) according to your actual data layout.
My answers are voluntary and without guarantee!
Hope this will help you.
Was the answer useful? Mark as best response and Like it!
This will help all forum participants.
May 22 2024 11:23 AM
you were super helpful and it worked!
recent development in the worksheet- how would I add another argument to combine in one section?
May 22 2024 11:31 PM
May 23 2024 12:04 AM
@Maribro95 I guess you need something like this:
=IF(AND(F3="Yes",H3="BPC"),J3*0.4,0)
of in case you want to avoid IF, perhaps this will work for you as well.
Apr 25 2024 10:42 PM
SolutionYou can use the following formula to achieve what you described:
=IF(A1="Yes", B1 * 0.4, 0)
In this formula:
Make sure to adjust the cell references (A1 and B1) according to your actual data layout.
My answers are voluntary and without guarantee!
Hope this will help you.
Was the answer useful? Mark as best response and Like it!
This will help all forum participants.