Thread: PIP
View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
JLGWhiz JLGWhiz is offline
external usenet poster
 
Posts: 3,986
Default PIP

You could use a List Box on a UserForm and call it up with a macro when you
want to see it. If the two columns you want to load are side by side then
you could use the RowSource property to load the ListBox, or in the
Initialize macro for the UserForm you could use the AddItem or List methods
if they are not side by side.
See the VBA help file for ListBox, List Property and AddItem propety for
additional details.

"Sam" wrote:

Is there a way to display a 2-column range in a userform control (perhaps an
image control)? I want to be able to view rows 1-52 of two columns while I am
at any point on the worksheet (e.g. row 3000). I will always have access to a
userform.

Any help would be appreciated.