Jump to content
Sign in to follow this  
parrot

Excel Help

Recommended Posts

Is there any way to make all cell references on a sheet - or even a range of cells - absolute in a single step?

Share this post


Link to post
Share on other sites

Sub SetAllToAbsolute()

Dim c As Range

For Each c In Selection

If c.HasFormula Then

c.Formula = Application.ConvertFormula(c.Formula, _

xlA1, xlA1, xlAbsolute)

End If

Next c

End Sub

Share this post


Link to post
Share on other sites
Sub SetAllToAbsolute()

Dim c As Range

For Each c In Selection

If c.HasFormula Then

c.Formula = Application.ConvertFormula(c.Formula, _

xlA1, xlA1, xlAbsolute)

End If

Next c

End Sub

Thanks.

Share this post


Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
Sign in to follow this  

×