Anchoring multiple cells at once

MichaelJ300

Board Regular
Joined
Oct 30, 2013
Messages
150
Office Version
  1. 2016
Platform
  1. Windows
Hello all, Wondering if there is a way to anchor multiple cells at once. Highlighting all the cells and hitting F4 doesn't work.
 

Excel Facts

Excel Can Read to You
Customize Quick Access Toolbar. From All Commands, add Speak Cells or Speak Cells on Enter to QAT. Select cells. Press Speak Cells.
If by anchoring, you mean turn the relative references in the cells to absolute references, I think you can only do this by rewriting the formulas (this could be easy if it's just one formula copied down -- just change the first formula and then copy it down again) or using VBA. Here's a VBA script I found from an old thread that works:

VBA Code:
Sub Absolute()

    Dim Cell As Range
    
    For Each Cell In Selection
        If Cell.HasFormula Then
            Cell.Formula = Application.ConvertFormula(Cell.Formula, xlA1, xlA1, xlAbsolute)
        End If
    Next

End Sub
 
Upvote 0

Forum statistics

Threads
1,223,588
Messages
6,173,225
Members
452,505
Latest member
Neeraj1990

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