Dear Smartsheet Wizard,
I'm trying to create a function but I'm running into an error.
The IF - And function I'm creating basically needs to do the following:
If salesperson 1 is = "Yan" then deduct 100 from Profit and his commission should be profit*0.5. Otherwise, deduct 100 from Profit and commission should be profit*0.4.
The second IF is:
IF Date>9/3/19 and Dealer = "B C" than if salesperson 1 is "Yan" then deduct 175 from Profit and his commission should be profit*0.5. Otherwise, deduct 175 from Profit and commission should be profit*0.4.
What I did looks something like this.
=IF(AND(Date1513>9/3/19,Dealership1="B C",[Sales Person 1]1513="Yan",)[Net Profit]1513 - 175) * 0.5),([Net Profit]1513 - 175) * 0.4)IF([Sales Person 1]1513= "Yan", ([Net Profit]1513 - 100) * 0.5), ([Net Profit]1513 - 100) * 0.4))
Please help.
Thank you.