Home » Category » Microsoft Excel

Microsoft Excel: Zooming in on a row

205| Thu, 22 May 2008 20:49:00 GMT| anonymous| Comments (1)
How can I click on a row (or cell) and that record is seen separately on a different worksheet.

Keywords & Tags: zooming, row, microsoft, excel

URL: http://developertags.com/microsoft-excel/495222/
 
«« Prev - Next »» 1 helpful answers below.
Hi Diane,

Private Sub Worksheet_SelectionChange(ByVal Target As Range)
If Target.Column <> 1 Then Exit Sub
ActiveCell.Resize(1, 7).Copy Sheets("Sheet2").Range("B2")
Sheets("Sheet2").Select
End Sub

Where you will select a cell in column A and that cell and the next 6 in the
row are displayed starting in B2 of sheet 2.

HTH
Regards,
Howard

"Diane" <Diane...discussions.microsoft.com> wrote in message
news:7660EE98-3079-4A0E-AD71-2B5C5A3CFD76...microsoft.com...
> How can I click on a row (or cell) and that record is seen separately on a
> different worksheet.

hbb | Thu, 22 May 2008 20:51:00 GMT |

Microsoft Excel Hot Answers

Microsoft Excel New questions

Microsoft Excel Related Categories