Enter a formula in cell B9 using the IFS function to calculate the owner's draw from the company. If the value in cell B7 is greater than or equal to 500000, the draw amount is 50000. If the value in cell B7 is greater than or equal to 150000, the bonus is 5000. If the value in cell B7 is less than 150000, display the text "no draw".
Type the Below IFS function in cell B9,
=IF(B7>=500000,50000,IF(B7>=150000,5000,"no draw"))
Format of IF function
IF(Logical_Test,[Value_if_true],[Value_if_false])
Get Answers For Free
Most questions answered within 1 hours.