View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.misc
Shane Devenshire[_2_] Shane Devenshire[_2_] is offline
external usenet poster
 
Posts: 3,346
Default How to write (Selected range - 1)

Is this in VBA or a spreadsheet formula?

[Last] would be an address if you want to work with the rows then
[Last].Row-1 woud be a start. And if Last is supposed to be an address, then
what would one mean by Last -1? Suppose Last is O31 is Last-1 N31 or O30
or...?

--
If this helps, please click the Yes button.

Cheers,
Shane Devenshire


"Damian" wrote:

I have a defined Name [Last], but I would like it to take 1 wor before [Last]

Right now I have Range("B31:O31", [Last])

I wnat it to be Range("B31:O31", [Last]-1) or something.

How would I put this?

Thank you.