CAN SOME HELP ME HOW TO PUT THIS FORMULA ON EXCEL:
1. Andre has set a revenue goal of $20,000 for January, February, and April, when the organization has no fundraisers, and a revenue goal of $200,000 for March and May, when the organization does have fundraisers.
In cell B10, enter a formula using the IF and AND functions to indicate whether the revenue goal has been met that month:
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.
If the logical test is true, display Yes (using "Yes" for the value_if_true argument).
If the logical test is false, insert a nested IF function.
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 the logical test for the nested IF function is true, display Yes (using "Yes" for the value_if_true argument).
If the logical test is false, display No (using "No" for the value_if_false argument).

Respuesta :

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