View Single Post
  #4   Report Post  
Posted to microsoft.public.excel.programming
Zoo Zoo is offline
external usenet poster
 
Posts: 40
Default Differrence bewteen Rows(X) and Rows(X).EntireRow

Thank you , Chip , Don.

I will use EntireRow.

"Don Guillett" wrote in message
...
None
Typically you would use the second to UN limit the range
with range("x2")
.value=3 'only that cell
.entirerow.dosomething
end with


--
Don Guillett
SalesAid Software

"Zoo" wrote in message
...
Hi,
I want to unhide row x.
Is there any difference between result of A and that of B?

A: Rows(x).Hidden = False
B: Rows(x).EntireRow.Hidden = False
Is there any situation that A doet not work properly?