View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.programming
SmilingPolitely[_2_] SmilingPolitely[_2_] is offline
external usenet poster
 
Posts: 3
Default Newbie Question: Returning the value from a cell on another sheet

Thanks for the response Frank, but I was hoping to be able to do this
with a worsheet function, rather than with VBA?



Frank Kabel wrote:

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.

.