FORMULA ON EXCEL
=IF(AND(B7=0,B8>20000),"Yes",IF(AND(B7>0,B8>200000),"Yes","No"))
According to the instruction the IF and AND function must be used to find the revenue goal met in the month.
The AND function is used for comparation between two operators.
The given instruction “Enter the logical test using the AND function to determine if the Fundraisers amount in cell B7 equals 0 and the Total in cell B8 is greater than 20000.”
AND(B7=0,B8>20000)
Instruction: If the logical test is true, display Yes (using “Yes” for the value_if_true argument).
IF(AND(B7=0,B8>20000),"Yes"
Instruction: If the logical test is false, insert a nested IF function.
=IF(AND(B7=0,B8>20000),"Yes",IF())
Instruction: Enter the logical test of the nested IF function using the AND function to determine if the Fundraisers amount in cell B7 is greater than 0 and the Total in cell B8 is greater than 200000.
=IF(AND(B7=0,B8>20000),"Yes",IF(AND(B7>0,B8>200000))
Instruction: If the logical test for the nested IF function is true, display Yes (using “Yes” for the value_if_true argument).
=IF(AND(B7=0,B8>20000),"Yes",IF(AND(B7>0,B8>200000),"Yes")
Instruction: If the logical test is false, display No (using “No” for the value_if_false argument).
=IF(AND(B7=0,B8>20000),"Yes",IF(AND(B7>0,B8>200000),"Yes","No")) used in Excel sheet.
Learn more about EXCEL here:
https://brainly.com/question/15842743
#SPJ4