+ Reply to Thread
Results 1 to 2 of 2

Absolute Cell Reference

Hybrid View

ShaneBell Absolute Cell Reference 07-29-2008, 02:21 PM
VBA Noob Here some code I found on a... 07-29-2008, 02:28 PM
  1. #1
    Registered User
    Join Date
    06-28-2006
    Posts
    19

    Absolute Cell Reference

    I have a spread sheet with mulitple cell references in it.
    How can I globally change all of the cell references to be absolute references without manually changing each one?

  2. #2
    Forum Contributor VBA Noob's Avatar
    Join Date
    04-25-2006
    Location
    London, England
    MS-Off Ver
    xl03 & xl 07(Jan 09)
    Posts
    11,988
    Here some code I found on a quick search.

    Try the top one. Press Alt + F11 then insert module. Paste in the Sub Absolute code. Close VB editor then select the area then press Alt + F8 then click run Absolute 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
    Sub AbsoluteRow() 
        Dim cell As Range 
        For Each cell In Selection 
        If cell.HasFormula Then 
           cell.Formula = Application.ConvertFormula(cell.Formula, _ 
    xlA1, xlA1, xlAbsRowRelColumn) 
        End If 
        Next 
    End Sub

    Sub AbsoluteCol() 
        Dim cell As Range 
        For Each cell In Selection 
        If cell.HasFormula Then 
           cell.Formula = Application.ConvertFormula(cell.Formula, _ 
    xlA1, xlA1, xlRelRowAbsColumn) 
        End If 
        Next 
    End Sub

    Sub Relative() 
        Dim cell As Range 
        For Each cell In Selection 
        If cell.HasFormula Then 
           cell.Formula = Application.ConvertFormula(cell.Formula, _ 
    xlA1, xlA1, xlRelative) 
        End If 
        Next 
    End Sub
    VBA Noob
    _________________________________________


    Credo Elvem ipsum etian vivere
    _________________________________________
    A message for cross posters

    Please remember to wrap code.

    Forum Rules

    Please add to your signature if you found this link helpful. Excel links !!!

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1