MilenaKanwal
New Member
- Joined
- Mar 18, 2014
- Messages
- 12
I have a spreadsheet that pulls date from another file to populate all but 1 column. In that column I need to have a formula that returns one of three responses:
If E2 is blank, then keep F2 blank
If E2 has a 1, then F2 should say 'single'
If E2 has a value greater than 1, then F2 should say 'multiple'
E2's formula begins with an IFERROR function, so if there is no data in the corresponding cell of the source data, it leaves the cell as a blank. ("")
I tried 2 different nested IF functions (see below), but somehow I can't seem to think of how make it all come together.
=IF(E2=1,"Single",IF(E2="","","Multiple"))
=IF(E2="","",IF(E2=1,"Single",IF(E2>1,"Multiple","")))
If E2 is blank, then keep F2 blank
If E2 has a 1, then F2 should say 'single'
If E2 has a value greater than 1, then F2 should say 'multiple'
E2's formula begins with an IFERROR function, so if there is no data in the corresponding cell of the source data, it leaves the cell as a blank. ("")
I tried 2 different nested IF functions (see below), but somehow I can't seem to think of how make it all come together.
=IF(E2=1,"Single",IF(E2="","","Multiple"))
=IF(E2="","",IF(E2=1,"Single",IF(E2>1,"Multiple","")))