ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   viewing seperate data in a worksheet (https://www.excelbanter.com/excel-programming/324857-viewing-seperate-data-worksheet.html)

Gate

viewing seperate data in a worksheet
 
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


David

viewing seperate data in a worksheet
 
Hi Gate,
You can split screen and use scroll lock, which does not require code, but
if you want to use code try something like this, going to have to experiment
to get the data you want visible:
Sub Macro1()
ActiveWindow.SplitColumn = 10
ActiveWindow.SmallScroll ToRight:=1
ActiveWindow.SplitRow = 16
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


David

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



All times are GMT +1. The time now is 12:37 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com