Chg Absolute to Relative

  • Thread starter Thread starter Adresmith
  • Start date Start date
A

Adresmith

I am in need of VBA that will convert a selected cell's formula fro
using absolute references to using relative references. I only want i
to change the active cell. Please help I know very little VBA.

Thanks! :confused
 
With ActiveCell
.Formula = Application.ConvertFormula(.Formula, xlA1, xlA1,
xlRelative)
End With
 

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