Home |
Search |
Today's Posts |
|
#1
![]() |
|||
|
|||
![]()
I have formulas in multiple cells that have dollar signs in the formula. So
when I copy and paste the formulas won't change. However I want them to change. So is there a way I can clear the dollar signs in multiple Cells at once So I don't have to do one by on? |
#2
![]() |
|||
|
|||
![]()
Hi
Select your range. Hit F2 and then click, in the formula bar, on the reference you want to change. Each time you hit F4, the reference will change through each relative and absolute option. When you see the one you want, hit Ctrl+Enter. Make sure you take a copy of the sheet before you start. -- Andy. "Mascot" wrote in message ... I have formulas in multiple cells that have dollar signs in the formula. So when I copy and paste the formulas won't change. However I want them to change. So is there a way I can clear the dollar signs in multiple Cells at once So I don't have to do one by on? |
#3
![]() |
|||
|
|||
![]()
Select them all and goto FormatCellnumber and set without dollars.
-- HTH Bob Phillips "Mascot" wrote in message ... I have formulas in multiple cells that have dollar signs in the formula. So when I copy and paste the formulas won't change. However I want them to change. So is there a way I can clear the dollar signs in multiple Cells at once So I don't have to do one by on? |
#4
![]() |
|||
|
|||
![]()
Mascot,
Select your cells, and run the macro below. And, yes, I know that Intersect command looks weird, but Excel will select all cells with formulas if you don't do it that way with a single cell selected..... HTH, Bernie MS Excel MVP Sub RemoveAbsoluteReferences() Dim myCell As Range For Each myCell In Intersect(Selection, Selection. _ SpecialCells(xlCellTypeFormulas)) myCell.Formula = Application.ConvertFormula( _ myCell.Formula, xlA1, xlA1, xlRelative) Next myCell End Sub "Mascot" wrote in message ... I have formulas in multiple cells that have dollar signs in the formula. So when I copy and paste the formulas won't change. However I want them to change. So is there a way I can clear the dollar signs in multiple Cells at once So I don't have to do one by on? |
#5
![]() |
|||
|
|||
![]()
Hi Bernie,
Thanks for the help this macro works perfectly. You saved me a lot of time. Mascot "Bernie Deitrick" wrote: Mascot, Select your cells, and run the macro below. And, yes, I know that Intersect command looks weird, but Excel will select all cells with formulas if you don't do it that way with a single cell selected..... HTH, Bernie MS Excel MVP Sub RemoveAbsoluteReferences() Dim myCell As Range For Each myCell In Intersect(Selection, Selection. _ SpecialCells(xlCellTypeFormulas)) myCell.Formula = Application.ConvertFormula( _ myCell.Formula, xlA1, xlA1, xlRelative) Next myCell End Sub "Mascot" wrote in message ... I have formulas in multiple cells that have dollar signs in the formula. So when I copy and paste the formulas won't change. However I want them to change. So is there a way I can clear the dollar signs in multiple Cells at once So I don't have to do one by on? |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
paste formulas between workbooks without workbook link | Excel Discussion (Misc queries) | |||
Help, Urgent Excel Formulas are not calculating | Excel Discussion (Misc queries) | |||
Problem with named formula's | Excel Worksheet Functions | |||
Formulas | Excel Worksheet Functions | |||
calculating formulas for all workbooks in a folder | Excel Worksheet Functions |