Multiple conditional statements in one cell

mkester

New Member
Joined
Jan 23, 2014
Messages
1
Hello! I am using Excel 2010 and I am currently using the formula

IF([@[HH SIZE]]=1, IF([@[Summary Total_Monthly Income]=]=>4452, "High", IF([@[Summary Total_Monthly Income]=]=>2971, "Moderate", IF([@[Summary Total_Monthly Income]=]=>4, "Low", "NA"))))

to determine whether an individual has "High" "Moderate" or "Low" income based on household size. Each household size has different income levels and this formula only pertains to HH sizes of 1. How can I include HH sizes of 2,3 etc with different income limits into a one cell formula. Currently I just manually change the formula by replacing HH size of 1 with 2 and income limits of 4452 and 2971 to 5088 and 3396, respectively and am wondering if I can consolidate it all into one formula.
 

Excel Facts

How to change case of text in Excel?
Use =UPPER() for upper case, =LOWER() for lower case, and =PROPER() for proper case. PROPER won't capitalize second c in Mccartney
nesting? Just change the income limits as required.


IF([@[HH SIZE]]=1,IF([@[Summary Total_Monthly Income]=]=>4452, "High", IF([@[Summary Total_Monthly Income]=]=>2971, "Moderate", IF([@[Summary Total_Monthly Income]=]=>4, "Low", "NA"))),IF([@[HH SIZE]]=2,IF([@[Summary Total_Monthly Income]=]=>4452, "High", IF([@[Summary Total_Monthly Income]=]=>2971, "Moderate", IF([@[Summary Total_Monthly Income]=]=>4, "Low", "NA"))),IF([@[HH SIZE]]=3,IF([@[Summary Total_Monthly Income]=]=>4452, "High", IF([@[Summary Total_Monthly Income]=]=>2971, "Moderate", IF([@[Summary Total_Monthly Income]=]=>4, "Low", "NA"))))))
 
Last edited:
Upvote 0

Forum statistics

Threads
1,214,905
Messages
6,122,178
Members
449,071
Latest member
cdnMech

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top