Hello i would like to set a basic if nested formula for estimating let's say commissions . If my limits are in units :
0-300 commission 0.2
301-500 commission 0.25
700 and above commission 0.30
Whats the correct syntax :
(if Units Sold>=700,0.30,if(Units Sold>=500,0.25,if(Units Sold>=300,then 0.2,"Zero")))
whats the mistake here please ? any help ?