Closed Thread
Results 1 to 2 of 2

changing from relative to absolute cell reference in multiple form

  1. #1
    JAaron
    Guest

    changing from relative to absolute cell reference in multiple form

    Is there a way to change relative cell refernces in multiple formulas from
    relative to absolute all at the same time, rather than highlighting refernce
    and hitting F4 and changing them one at a time. I have to change several
    hundred formula references from relative to absolute.

  2. #2
    Ardus Petus
    Guest

    Re: changing from relative to absolute cell reference in multiple form

    Sub AbsFormula()
    Dim rcell As Range
    For Each rcell In ActiveSheet.UsedRange.SpecialCells(xlFormulas)
    rcell.Formula = Application.ConvertFormula( _
    rcell.Formula, xlA1, xlA1, xlAbsolute)
    Next rcell
    End Sub

    HTH
    --
    AP

    "JAaron" <JAaron@discussions.microsoft.com> a écrit dans le message de news:
    682449C5-40A7-41E5-BA43-BC9EEA6752B5@microsoft.com...
    > Is there a way to change relative cell refernces in multiple formulas from
    > relative to absolute all at the same time, rather than highlighting
    > refernce
    > and hitting F4 and changing them one at a time. I have to change several
    > hundred formula references from relative to absolute.




Closed 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