fixed cell reference

J

Jacob Skaria

In edit mode; place the cursor near the cell reference and press F4.

If this post helps click Yes
 
G

Gord Dibben

No such function to pre-select type of cell references.

Only F4 during or after entry as others have posted.

Or use macros to change a complete range of cells after entry.

Example macro.............

Sub Absolute()
Dim Cell As Range
For Each Cell In Selection
If Cell.HasFormula Then
Cell.Formula = Application.ConvertFormula _
(Cell.Formula, xlA1, xlA1, xlAbsolute)
'Or choose from below
'(Cell.Formula, xlA1, xlA1, xlAbsRowRelColumn)
'(Cell.Formula, xlA1, xlA1, xlRelRowAbsColumn)
'(Cell.Formula, xlA1, xlA1, xlRelative)
End If
Next
End Sub


Gord Dibben MS Excel MVP
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top