View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Chip Pearson Chip Pearson is offline
external usenet poster
 
Posts: 7,247
Default Code to pull the value of a Cell of the next Worksheet to the left

I'm not sure I understand your question, but maybe something like

If Not ActiveSheet.Previous Is Nothing Then
Range("A1").Value = ActiveSheet.Previous.Range("A1").Value
End If


--
Cordially,
Chip Pearson
Microsoft MVP - Excel
Pearson Software Consulting, LLC
www.cpearson.com



"CRayF" wrote in message
...
How would I code to pull the value of a Cell of the next
Worksheet to the left?