0

How would this be written as a nested IF function:

If single
  a. give <20 = "Bachelor"
  b. give >20 = "Big Donor"
If married**
  a. give <20 = "Frugal Double"
  b. give >20 = "Charity Couple"

1 Answer 1

1
= IF(A2="Single",IF(C2<20,"Bachelor","Big Donor"),IF(C2<20,"Frugal Double","Charity Couple"))

where A2 could have "Single" or other value (add other validation if needed) and C2 could have any number as a value (add other validation if necessary)

Hope that will help

Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.