global vs relative format

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

i am linking cells in a workbook to another workbook. the link gives me the
$c$45 format which does not allow me to copy to other cells that are
contiguous.

how and where do you change the format so it gives you c45 as the reference
when linking?

thanks.
 
I don't believe you can change the default to relative cell references.

To change one cell at a time select the address in the formula bar then use F4
to cycle through to options.

To change all copied cells at once from absolute to relative use this macro.

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


Gord Dibben MS Excel MVP

i am linking cells in a workbook to another workbook. the link gives me the
$c$45 format which does not allow me to copy to other cells that are
contiguous.

how and where do you change the format so it gives you c45 as the reference
when linking?

thanks.

Gord Dibben MS Excel MVP
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top