Macro to add if statment to every formula in a range

tonywatsonhelp

Well-known Member
Joined
Feb 24, 2014
Messages
3,194
Office Version
  1. 365
  2. 2019
  3. 2016
Platform
  1. Windows
Hi Everyone,

Ok I hope this is posible,
I inherated a doc from an idiot who doesn't care about looks and I have lots of ranges that have simple link formulas in.
e.g.s "='EitWT'!D11"

a lot of these have blanks and I have a sheet full of zeros, I know I can hide the zeros but for calculation purposes etc. i'd prefer they were "",
so i'm look for a macro that does this
for every formula in selected range
change formula from
"='EitWT'!D11" to "=If(
'EitWT'!D11"="","",
'EitWT'!D11)"
<strike></strike><strike></strike>

any ideas please.
thanks

Tony
 

Excel Facts

Did you know Excel offers Filter by Selection?
Add the AutoFilter icon to the Quick Access Toolbar. Select a cell containing Apple, click AutoFilter, and you will get all rows with Apple
Tony

Try this, adjust the range as required.
Code:
Dim rng As Range
Dim cl As Range

    For Each cl In Range("A1:A100").SpecialCells(xlCellTypeFormulas)
        cl.Formula = "=IF(" & Mid(cl.Formula, 2) & "="""", """", " & Mid(cl.Formula, 2) & ")"
    Next cl
 
Upvote 0

Forum statistics

Threads
1,214,979
Messages
6,122,561
Members
449,089
Latest member
Motoracer88

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