View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Frank Kabel Frank Kabel is offline
external usenet poster
 
Posts: 3,885
Default Newbie Question: Returning the value from a cell on another sheet

Hi
try something like

with worksheets("other sheet")
msgbox .Cells(Rows.count, "A").End(xlUp).value
end with

-----Original Message-----
I have data stored on a sheet that I want to access from

another sheet.
The data is stored in rows with a varying number of

data items on each
row. Is there a worksheet formula to return the value in

the last
occupied cell on the row?

Any help would be appreciated.

.