If function with different text answers

Dicegirly

New Member
Joined
Oct 26, 2015
Messages
10
Hello,

I am trying to fill in the diagnosis text where I have been given initials.
The M column contains one of 3 sets of initials. CD, UC or CD-F. I want it to fill in, in column I, the full diagnosis from the abbreviations in column M.

This is what I have so far:

=IF(M2="CD","Crohn's Disease", IF("UC","Ulcerative Colitis", IF ("CD-F","Fistulating Crohn's Disease")))

It is returning the correct result where the initials are "CD", but I get a #VALUE error in all other cells.

I expect it is something small that I am missing, but I have tried everything I can think of and it only checks the first logical test, and I can't remember how to next it properly so it checks them all.

Can anyone assist me please?

Thanks :)
 

Excel Facts

Which Excel functions can ignore hidden rows?
The SUBTOTAL and AGGREGATE functions ignore hidden rows. AGGREGATE can also exclude error cells and more.
Hello,

I am trying to fill in the diagnosis text where I have been given initials.
The M column contains one of 3 sets of initials. CD, UC or CD-F. I want it to fill in, in column I, the full diagnosis from the abbreviations in column M.

This is what I have so far:

=IF(M2="CD","Crohn's Disease", IF("UC","Ulcerative Colitis", IF ("CD-F","Fistulating Crohn's Disease")))

It is returning the correct result where the initials are "CD", but I get a #VALUE error in all other cells.

I expect it is something small that I am missing, but I have tried everything I can think of and it only checks the first logical test, and I can't remember how to next it properly so it checks them all.

Can anyone assist me please?

Thanks :)
Hi Dicegirly,

Try this instead:

=IF(M2="CD","Crohn's Disease",IF(M2="UC","Ulcerative Colitis",IF(M2="CD-F","Fistulating Crohn's Disease","")))


Basically you need to specify the "M2=" part for each IF
 
Last edited:
Upvote 0
Try =IF(M2="CD","Crohn's Disease", IF(M2="UC","Ulcerative Colitis", IF (M2="CD-F","Fistulating Crohn's Disease","No Diagnosis")))
 
Upvote 0

Forum statistics

Threads
1,214,970
Messages
6,122,514
Members
449,088
Latest member
RandomExceller01

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