Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Is it possible to switch on automatic fixed cell reference ($)
|
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
In edit mode; place the cursor near the cell reference and press F4.
If this post helps click Yes --------------- Jacob Skaria "Brian Gregg" wrote: Is it possible to switch on automatic fixed cell reference ($) |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
F4 will toggle between the 4 options for relative & absolute addressing.
-- David Biddulph "Brian Gregg" wrote in message ... Is it possible to switch on automatic fixed cell reference ($) |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
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 On Thu, 26 Nov 2009 09:57:01 -0800, Brian Gregg wrote: Is it possible to switch on automatic fixed cell reference ($) |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
show row number in one fixed cell in reference to your cursor pos. | Excel Discussion (Misc queries) | |||
Fixed Reference | Excel Discussion (Misc queries) | |||
how to paste formula but reference a fixed cell | Excel Discussion (Misc queries) | |||
Can you have fixed cell reference when dragging/copying formulae? | Excel Discussion (Misc queries) | |||
reference cell value from fixed column with variable row | Excel Discussion (Misc queries) |