Nested IF Function not working! HELP!

awd_awd

New Member
Joined
Oct 30, 2014
Messages
11
I have a sheet that can use three different RTD sources.

I have the following IS statement that returns the correct data given what RTD feed is being used.

=IF($B$98="BLOOMBERG";$C$134),IF($B$98="Reuters";$C$135; 'MV Data'!C4))*100

However, it does not work...

Can anyone offer any help on this?

Thanks in advanced.
 

Excel Facts

Best way to learn Power Query?
Read M is for (Data) Monkey book by Ken Puls and Miguel Escobar. It is the complete guide to Power Query.
Try this?
=IF($B$98="BLOOMBERG",$C$134,IF($B$98="Reuters",$C$135,'MV Data'!C4))*100
 
Upvote 0
I have a sheet that can use three different RTD sources.

I have the following IS statement that returns the correct data given what RTD feed is being used.

=IF($B$98="BLOOMBERG";$C$134),IF($B$98="Reuters";$C$135; 'MV Data'!C4))*100

However, it does not work...

Can anyone offer any help on this?

Thanks in advanced.


Get rid of those semi-colons and replace them with commas. You have your parenthesis in funky spots as well, so double check that after you fix the semi-colon issue.
 
Upvote 0
Get rid of those semi-colons and replace them with commas. You have your parenthesis in funky spots as well, so double check that after you fix the semi-colon issue.

=IF($B$98="BLOOMBERG",$C$134, IF($B$98="Reuters",$C$135,'MV Data'!C4))*100

can you guide me as to where the parenthesis should be ?

thanks in advanced.
 
Upvote 0

Forum statistics

Threads
1,214,819
Messages
6,121,739
Members
449,050
Latest member
excelknuckles

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