Calculation Formula /commission calculation
Hi , Please find attached
I Need to create formula in Commission column as follow :
If amount in Price Col has amount equal to 20.00 or less Than to input the amount 2.00 in commission col
and if the amount is between 21.00 to 25.00 than to input amount 3.00 in commission col
and if amount is between 26.00 to 30.00 than to input the amount 4.00 in commission col
and if amount is equal to 30.00 and higher than to put the amount 5.00 in commission col
Thank you
Answers
-
This should work
=IF([Price]@row>=30, 5, IF([Price]@row>=26, 4, IF([Price]@row>=21, 3, 2)))
Started at 30 and worked my way down..
this will give anything under 20 a $2.00 commission
This would give zero commission for <0
=IF([Price]@row>=30, 5, IF([Price]@row>=26, 4, IF([Price]@row>=21, 3, IF([Price]@row>=0, 2, 0))))
Brent C. Wilson, P.Eng, PMP, Prince2
Facilityy Professional Services Inc.
http://www.facilityy.com
-
It work exactly as we want , so many thanks
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 64.6K Get Help
- 433 Global Discussions
- 136 Industry Talk
- 465 Announcements
- 4.9K Ideas & Feature Requests
- 143 Brandfolder
- 147 Just for fun
- 63 Community Job Board
- 466 Show & Tell
- 32 Member Spotlight
- 2 SmartStories
- 298 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!