Nesting IF statement - pulling data from another worksheet

CanaDaan

New Member
Joined
Apr 11, 2013
Messages
3
Hi there,

I'm not that experienced with Excel, so I'm hoping this is an easy question for you!


I created the IF statement below and it returns the values "poor" and "good" - no issues there. For the third value, I want to pull text from another worksheet (Recommendations) which is in cell B5. But currently, Excel returns "=Recommendations'!B5". What am I doing wrong?

=IF($B3<5,"Poor",IF($B3>7,"=Recommendations'!B5","Good"))

Thanks!
 

Excel Facts

Difference between two dates
Secret function! Use =DATEDIF(A2,B2,"Y")&" years"&=DATEDIF(A2,B2,"YM")&" months"&=DATEDIF(A2,B2,"MD")&" days"
=IF($B3<5,"Poor",IF($B3>7,Recommendations'!$B$5,"Good"))

Placing quotes around it places exactly what you typed in the cell. You will also want to lock your range so it doesn't move as you pull the formula down.

Hope this helps!
 
Upvote 0

Forum statistics

Threads
1,203,453
Messages
6,055,530
Members
444,794
Latest member
HSAL

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