• Make all formula references absolute

    Author
    Topic
    #465767

    Hi,

    Is there a way to convert references in selected formulas/functions on a spreadsheet from relative refs to absolute refs? F4 works to cycle through the ref styles, but only for the active cell. I want to select multiple formulas and have all the refs in the formula convert to absolute.

    Any help will be appreciated.

    TX

    Viewing 30 reply threads
    Author
    Replies
    • #1199043

      Hi,

      Is there a way to convert references in selected formulas/functions on a spreadsheet from relative refs to absolute refs? F4 works to cycle through the ref styles, but only for the active cell. I want to select multiple formulas and have all the refs in the formula convert to absolute.

      Any help will be appreciated.

      TX

    • #1199785

      Hi,

      Is there a way to convert references in selected formulas/functions on a spreadsheet from relative refs to absolute refs? F4 works to cycle through the ref styles, but only for the active cell. I want to select multiple formulas and have all the refs in the formula convert to absolute.

      Any help will be appreciated.

      TX

    • #1200567

      Hi,

      Is there a way to convert references in selected formulas/functions on a spreadsheet from relative refs to absolute refs? F4 works to cycle through the ref styles, but only for the active cell. I want to select multiple formulas and have all the refs in the formula convert to absolute.

      Any help will be appreciated.

      TX

    • #1201448

      Hi,

      Is there a way to convert references in selected formulas/functions on a spreadsheet from relative refs to absolute refs? F4 works to cycle through the ref styles, but only for the active cell. I want to select multiple formulas and have all the refs in the formula convert to absolute.

      Any help will be appreciated.

      TX

    • #1202261

      Hi,

      Is there a way to convert references in selected formulas/functions on a spreadsheet from relative refs to absolute refs? F4 works to cycle through the ref styles, but only for the active cell. I want to select multiple formulas and have all the refs in the formula convert to absolute.

      Any help will be appreciated.

      TX

    • #1203065

      Hi,

      Is there a way to convert references in selected formulas/functions on a spreadsheet from relative refs to absolute refs? F4 works to cycle through the ref styles, but only for the active cell. I want to select multiple formulas and have all the refs in the formula convert to absolute.

      Any help will be appreciated.

      TX

    • #1203957

      Hi,

      Is there a way to convert references in selected formulas/functions on a spreadsheet from relative refs to absolute refs? F4 works to cycle through the ref styles, but only for the active cell. I want to select multiple formulas and have all the refs in the formula convert to absolute.

      Any help will be appreciated.

      TX

    • #1198272

      Hi Rudi,

      Get yourself the free ASAP Utilities (http://www.asap-utilities.com/download-asap-utilities.php). Under Formulas there is the utility to change the reference mode for a selected number of cells containing formulas.

      Regards, Teunis

    • #1199051

      Hi Rudi,

      Get yourself the free ASAP Utilities (http://www.asap-utilities.com/download-asap-utilities.php). Under Formulas there is the utility to change the reference mode for a selected number of cells containing formulas.

      Regards, Teunis

    • #1199794

      Hi Rudi,

      Get yourself the free ASAP Utilities (http://www.asap-utilities.com/download-asap-utilities.php). Under Formulas there is the utility to change the reference mode for a selected number of cells containing formulas.

      Regards, Teunis

    • #1200571

      Hi Rudi,

      Get yourself the free ASAP Utilities (http://www.asap-utilities.com/download-asap-utilities.php). Under Formulas there is the utility to change the reference mode for a selected number of cells containing formulas.

      Regards, Teunis

    • #1201452

      Hi Rudi,

      Get yourself the free ASAP Utilities (http://www.asap-utilities.com/download-asap-utilities.php). Under Formulas there is the utility to change the reference mode for a selected number of cells containing formulas.

      Regards, Teunis

    • #1202265

      Hi Rudi,

      Get yourself the free ASAP Utilities (http://www.asap-utilities.com/download-asap-utilities.php). Under Formulas there is the utility to change the reference mode for a selected number of cells containing formulas.

      Regards, Teunis

    • #1203069

      Hi Rudi,

      Get yourself the free ASAP Utilities (http://www.asap-utilities.com/download-asap-utilities.php). Under Formulas there is the utility to change the reference mode for a selected number of cells containing formulas.

      Regards, Teunis

    • #1203961

      Hi Rudi,

      Get yourself the free ASAP Utilities (http://www.asap-utilities.com/download-asap-utilities.php). Under Formulas there is the utility to change the reference mode for a selected number of cells containing formulas.

      Regards, Teunis

    • #1198274

      You can also use this macro:

      Code:
      Sub Convert2Absolute()
          Dim oCell As Range
          If TypeName(Selection) = "Range" Then
              For Each oCell In Selection
                  oCell.Formula = Application.ConvertFormula(oCell.Formula, xlA1, xlA1, True)
              Next
          End If
      End Sub
      
    • #1199059

      You can also use this macro:

      Code:
      Sub Convert2Absolute()
          Dim oCell As Range
          If TypeName(Selection) = "Range" Then
              For Each oCell In Selection
                  oCell.Formula = Application.ConvertFormula(oCell.Formula, xlA1, xlA1, True)
              Next
          End If
      End Sub
      
    • #1199799

      You can also use this macro:

      Code:
      Sub Convert2Absolute()
          Dim oCell As Range
          If TypeName(Selection) = "Range" Then
              For Each oCell In Selection
                  oCell.Formula = Application.ConvertFormula(oCell.Formula, xlA1, xlA1, True)
              Next
          End If
      End Sub
      
    • #1200573

      You can also use this macro:

      Code:
      Sub Convert2Absolute()
          Dim oCell As Range
          If TypeName(Selection) = "Range" Then
              For Each oCell In Selection
                  oCell.Formula = Application.ConvertFormula(oCell.Formula, xlA1, xlA1, True)
              Next
          End If
      End Sub
      
    • #1201454

      You can also use this macro:

      Code:
      Sub Convert2Absolute()
          Dim oCell As Range
          If TypeName(Selection) = "Range" Then
              For Each oCell In Selection
                  oCell.Formula = Application.ConvertFormula(oCell.Formula, xlA1, xlA1, True)
              Next
          End If
      End Sub
      
    • #1202267

      You can also use this macro:

      Code:
      Sub Convert2Absolute()
          Dim oCell As Range
          If TypeName(Selection) = "Range" Then
              For Each oCell In Selection
                  oCell.Formula = Application.ConvertFormula(oCell.Formula, xlA1, xlA1, True)
              Next
          End If
      End Sub
      
    • #1203071

      You can also use this macro:

      Code:
      Sub Convert2Absolute()
          Dim oCell As Range
          If TypeName(Selection) = "Range" Then
              For Each oCell In Selection
                  oCell.Formula = Application.ConvertFormula(oCell.Formula, xlA1, xlA1, True)
              Next
          End If
      End Sub
      
    • #1203963

      You can also use this macro:

      Code:
      Sub Convert2Absolute()
          Dim oCell As Range
          If TypeName(Selection) = "Range" Then
              For Each oCell In Selection
                  oCell.Formula = Application.ConvertFormula(oCell.Formula, xlA1, xlA1, True)
              Next
          End If
      End Sub
      
    • #1198366

      Thanks guys.
      Appreciate the replies.

      Teunis: I queried this not for me, but for a client I am dealing with. I’ll tell them about ASAP. (I have it, and its a great utility)
      Jan Karel: Cheers for that macro. This is great!

    • #1199399

      Thanks guys.
      Appreciate the replies.

      Teunis: I queried this not for me, but for a client I am dealing with. I’ll tell them about ASAP. (I have it, and its a great utility)
      Jan Karel: Cheers for that macro. This is great!

    • #1199919

      Thanks guys.
      Appreciate the replies.

      Teunis: I queried this not for me, but for a client I am dealing with. I’ll tell them about ASAP. (I have it, and its a great utility)
      Jan Karel: Cheers for that macro. This is great!

    • #1200675

      Thanks guys.
      Appreciate the replies.

      Teunis: I queried this not for me, but for a client I am dealing with. I’ll tell them about ASAP. (I have it, and its a great utility)
      Jan Karel: Cheers for that macro. This is great!

    • #1201552

      Thanks guys.
      Appreciate the replies.

      Teunis: I queried this not for me, but for a client I am dealing with. I’ll tell them about ASAP. (I have it, and its a great utility)
      Jan Karel: Cheers for that macro. This is great!

    • #1202365

      Thanks guys.
      Appreciate the replies.

      Teunis: I queried this not for me, but for a client I am dealing with. I’ll tell them about ASAP. (I have it, and its a great utility)
      Jan Karel: Cheers for that macro. This is great!

    • #1203169

      Thanks guys.
      Appreciate the replies.

      Teunis: I queried this not for me, but for a client I am dealing with. I’ll tell them about ASAP. (I have it, and its a great utility)
      Jan Karel: Cheers for that macro. This is great!

    • #1204077

      Thanks guys.
      Appreciate the replies.

      Teunis: I queried this not for me, but for a client I am dealing with. I’ll tell them about ASAP. (I have it, and its a great utility)
      Jan Karel: Cheers for that macro. This is great!

    Viewing 30 reply threads
    Reply To: Make all formula references absolute

    You can use BBCodes to format your content.
    Your account can't use all available BBCodes, they will be stripped before saving.

    Your information: