#Name? Error in select versions...

andrewb90

Well-known Member
Joined
Dec 16, 2009
Messages
1,077
Hello All,

I've been going through my workbook to make it compatible for older versions, and one of the issues it flagged was saying that one or more functions isn't available in earlier versions and and will display a #Name? instead of the result.

Here is the only formula (filled down x 100 rows)

Code:
=IF(C5="","","*")&IF(C5="","",IF((MOD(IF(F5="CLOSE",Initial!$E$31,F5)-D5,1)*24)>=Initial!$F$52,"30",IF((MOD(IF(F5="CLOSE",Initial!$E$31,F5)-D5,1)*24)<Initial!$F$53,"N","15")))

There are only a few occurrences, so I'm at a loss to explain what could be causing it.
 

Excel Facts

Waterfall charts in Excel?
Office 365 customers have access to Waterfall charts since late 2016. They were added to Excel 2019.
If you are using the formula with vba, it should read,

Code:
=IF(C5="""","""","*")&IF(C5="""","""",IF((MOD(IF(F5=""CLOSE"",Initial!$E$31,F5)-D5,1)*24)>=Initial!$F$52,""30"",IF((MOD(IF(F5=""CLOSE"",Initial!$E$31,F5)-D5,1)*24)
 
Upvote 0

Forum statistics

Threads
1,223,236
Messages
6,170,915
Members
452,366
Latest member
TePunaBloke

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