PC Review


Reply
Thread Tools Rate Thread

Absolute Reference on a Group of Cells

 
 
ab
Guest
Posts: n/a
 
      5th Jun 2007
How can create an absolute reference on a group of cells

 
Reply With Quote
 
 
 
 
Chip Pearson
Guest
Posts: n/a
 
      5th Jun 2007
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.


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



"ab" <(E-Mail Removed)> wrote in message
news:AA5A1061-D865-4E1B-B8FB-(E-Mail Removed)...
> How can create an absolute reference on a group of cells
>



 
Reply With Quote
 
Gord Dibben
Guest
Posts: n/a
 
      5th Jun 2007
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

On Tue, 5 Jun 2007 09:32:20 -0500, "ab" <(E-Mail Removed)> wrote:

>How can create an absolute reference on a group of cells
>


 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

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


Similar Threads
Thread Thread Starter Forum Replies Last Post
Relative and Absolute Reference to Cells in a Formula jimt Microsoft Excel Discussion 2 15th Aug 2007 01:58 PM
HOw do I change group of cells from absolute reference? bre Microsoft Excel New Users 3 25th Sep 2005 03:21 AM
changing many cells reference to absolute =?Utf-8?B?V29vZHkxMw==?= Microsoft Excel Misc 3 1st Nov 2004 10:35 PM
RE: absolute reference to all cells? =?Utf-8?B?SkJvdWx0b24=?= Microsoft Excel Worksheet Functions 0 26th Aug 2004 11:49 PM
Re: absolute reference to all cells? hgrove Microsoft Excel Worksheet Functions 0 26th Aug 2004 10:09 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 06:24 PM.