Home |
Search |
Today's Posts |
#5
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Gord Dibben <gorddibbATshawDOTca wrote...
You can copy/paste this routine to a general module in your workbook then run it on any range you select. 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 .... Tangent: OpenOffice Calc 3.1 can handle this using regular expressions by replacing \<([A-Z]+)([0-9]+)\ with \$$1\$$2 Wouldn't it be nice if Excel provided regular expressions? |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Copying a forumula to many cells -but keeping one element static | Excel Worksheet Functions | |||
Keeping Links from Breaking | Excel Discussion (Misc queries) | |||
keeping a sum array static | Excel Worksheet Functions | |||
keeping formulas static when cutitng and pasting associated celldata | New Users to Excel | |||
Right Filling A Formula Whilst Keeping A Static Column | Excel Discussion (Misc queries) |