View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
BCS BCS is offline
external usenet poster
 
Posts: 4
Default Need Help w/ SUM Formula Syntax

I have a macro that inserts a SUM formula for a range of cells on a single
row. Here's what I have so far:

Dim RegionRange as String

RegionRange = Range(Cells(NextBlankRow, FIRSTREGION_COL),
Cells(NextBlankRow, TotalCol - 1)).Address
Worksheets(DATASHEET).Cells(NextBlankRow, TotalCol).Formula = "=Sum(" &
RegionRange & ")"

The value of variable RegionRange ends up being something like
"$B$49:$H$49", which is correct but I don't want an absolute reference.
Everything works fine, but I would prefer to have a relative reference like
"B49:H49" instead. There's the possibility that the user could insert a
column in which case the SUM using the absolute reference won't pick up the
new data.

Thanks,

Barry