Home | Contact Us | FAQ | Search & Site Map | Link to Us
Sign In | Join | Other 45 Sites in Network
Home
DiscussionsAccessExcelInfoPathOutlookPowerPointPublisherWord
DirectoryUser Groups
Related Topics
Outlook ExpressInternet ExplorerWindowsMS Server ProductsMore Topics ...

MS Office Forum / Excel / New Users / June 2007

Tip: Looking for answers? Try searching our database.

Absolute Reference on a Group of Cells

Thread view: 
Enable EMail Alerts  Start New Thread
Thread rating: 
ab - 05 Jun 2007 15:32 GMT
How can create an absolute reference on a group of cells
Chip Pearson - 05 Jun 2007 15:43 GMT
Use the '$' character.  E.g., $A$1:$C$10

Note, though, this will change if you insert rows in 1:10. You can also use
INDIRECT("A1:C10") which prevents Excel from changing the reference when a
row in inserted.

Signature

Cordially,
Chip Pearson
Microsoft MVP - Excel
Pearson Software Consulting LLC
www.cpearson.com
(email on the web site)

> How can create an absolute reference on a group of cells
Gord Dibben - 05 Jun 2007 15:56 GMT
For a range of cells you could use a macro to change all at once.

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

Gord Dibben  MS Excel MVP

>How can create an absolute reference on a group of cells
 
Sign In
Join
My Latest Posts
My Monitored Threads
My Blog
My Photo Gallery
My Profile
My Homepage

Start New Thread
Enable EMail Alerts
Rate this Thread



©2008 Advenet LLC   Privacy Policy - Terms of Use
This website includes both content owned or controlled by Advenet as well as content owned or controlled by third parties.