View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.programming
David David is offline
external usenet poster
 
Posts: 1,560
Default viewing seperate data in a worksheet

Use your macrorecorder and slpit the screen where your data is located.
Sub Macro2()
Range("Z100").Select
ActiveWindow.SplitRow = 8
ActiveWindow.SplitColumn = 9
End Sub

"Gate" wrote:

i want to be able to pop-up data that is in a different area of a worksheet
without changing my current position. I don't want to edit data that i'm
trying to see...i just want to be able to "refer" to it from time to time
without changning my position and i want to keep my curent p[osition in the
sheet to edit data in that position while refering to other data for info.
kinda like a pop-up info sheet where tha data comes from another position in
the sheet. Can this be done