Respuesta :
Answer:
IF(AND(Payment_Type = 'Credit', Amount >= 4000),'Flag')
Explanation:
Given
Search criterion 1: Payment Type: Credit
Search Criterion 2: Amount ≥
$4000
Given the above search criteria, the nested function is as follows;
IF(AND(Payment_Type = 'Credit', Amount >= 4000),'Flag')
The above statement will display the word 'Flag' without the quotes if and only if the two conditions in the brackets are satisfied
Condition 1: Payment_Type = 'Credit'
Here, Payment_Type is used because when naming a column, it's preferred to avoid space or blank characters.
So, if this condition is satisfied (i.e. if payment type is credit) it checks for condition 2
Condition 2: Amount>=4000
This mean the amount must be at least 4000.
Both conditions must be satisfied because of the AND clause in the statement.
The nested function uses the 'IF' keyword to check if two given conditions are true using the 'AND' operator and displays a preffered value if true or otherwise. The function goes thus :
- =IF(AND(Payment_type = 'Credit' , Amount >= 4000), 'Flag', '')
The IF AND syntax in excel :
- =IF(AND(CONDITION 1 , CONDITION 2), Value if True, Value if False)
Condition 1 : Payment_type = 'Credit'
Condition 2 : Amount >= 4000
Value if True : 'Flag'
Value if False : blank cell : ''
Therefore, the function to be entered into the cell G8 would be written thus :
- =IF(AND(Payment_type = 'Credit' , Amount >= 4000), 'Flag', '')
Learn more bout excel functions: https://brainly.com/question/25096764?referrer=searchResults