M mikewild2000 Feb 6, 2004 #1 I am trying to add code to stop the user from moving beyond column "M" Can it be done? Thanks in advanc
I am trying to add code to stop the user from moving beyond column "M" Can it be done? Thanks in advanc
B Bob Phillips Feb 6, 2004 #2 Mike, something like If Activecell.Column>13 Then Cells(Activecell.Row,13).Select End If -- HTH Bob Phillips ... looking out across Poole Harbour to the Purbecks (remove nothere from the email address if mailing direct)
Mike, something like If Activecell.Column>13 Then Cells(Activecell.Row,13).Select End If -- HTH Bob Phillips ... looking out across Poole Harbour to the Purbecks (remove nothere from the email address if mailing direct)
R Roger Govier Feb 6, 2004 #3 Hi Mike You could use something like ThisWorkbook.Worksheets("Sheet1").ScrollArea = "A1:M5000"