View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Leith Ross[_766_] Leith Ross[_766_] is offline
external usenet poster
 
Posts: 1
Default Invalid or unqualified reference error


Stanley Braverman;258094 Wrote:
Getting Invalid or unqualified reference error at .Cells

Sub wordwrap()

Sheets("Sheet1").rows("1:" & .Cells(.rows.Count,
"A").End(xlUp).Row).AutoFit

End Sub


Hello Stanley,

The period indicates the code statement expects that the Parent
qualifier has been declared in a With statement. See below...

----------------------------------------------------
Sub wordwrap()

With Sheets("Sheet1")
.Rows("1:" & .Cells(.Rows.Count, "A").End(xlUp).Row).Autofit
End With

End Sub
----------------------------------------------------


--
Leith Ross

Sincerely,
Leith Ross

'The Code Cage' (http://www.thecodecage.com/)
------------------------------------------------------------------------
Leith Ross's Profile: http://www.thecodecage.com/forumz/member.php?userid=75
View this thread: http://www.thecodecage.com/forumz/sh...ad.php?t=72065