Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 48
Default Making all references in a range absolute

Hi

I have a lot of If formulas in a sheet.
Now I need to have all the cellreferences in the sheet(D16:J51) made
absolute...
I have tried copy/drag but apparantly the formulas are too complicated
for Excel to copy/drag them.

Any ideas?

I'm guessing this cannot be done without a macro, but if that what it
takes...
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 48
Default Making all references in a range absolute

Okay

Found an answer to this in another older thread

Sub SetAllToAbsolute()

Dim c As Range

For Each c In Selection '<--Cell became C

If c.HasFormula Then

c.Formula = Application.ConvertFormula(c.Formula, _

xlA1, xlA1, xlAbsolute)

End If

Next c '<-- I like it here, too <bg

End Sub

By Don Guillett
Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
convert relative cell references to absolute cell references via amacro? Dave F[_2_] Excel Discussion (Misc queries) 1 May 15th 08 04:43 PM
Help with converting a block of cells with Absolute and mixed references to relative references Vulcan Excel Worksheet Functions 3 December 13th 07 11:43 PM
Excel - copy absolute cell references (within the range) as relati Merf1013 Excel Discussion (Misc queries) 1 October 10th 06 07:46 AM
Changing cell references in a Range to Absolute The Hawk Excel Discussion (Misc queries) 1 May 3rd 06 06:08 PM
Making Sum ranges Absolute Ken Excel Discussion (Misc queries) 1 February 19th 05 06:47 PM


All times are GMT +1. The time now is 11:42 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"