Thread: Format Cells ?
View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Paul B[_6_] Paul B[_6_] is offline
external usenet poster
 
Posts: 135
Default Format Cells ?

Forrest, try this for the last cell with date in C
Range("C65536").End(xlUp).NumberFormat = "0.00%"


--
Paul B
Always backup your data before trying something new
Please post any response to the newsgroups so others can benefit from it
Feedback on answers is always appreciated!
Using Excel 2000 & 97
** remove news from my email address to reply by email **
"Forrest" wrote in message
...
The following code snippet is my attempt to format the last cell in column

C as percent with 2 decimal places.

xlWs.Range("c1").End(xlDown).Selection.PercentForm at = "0.00%"

Need help.