View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Gary Keramidas Gary Keramidas is offline
external usenet poster
 
Posts: 2,494
Default How do I decrease the value of a column by 10%

one way
With Columns("A")
.ColumnWidth = .ColumnWidth * 0.9
End With

--


Gary


"Eagledove" wrote in message
...
I would appreciate help on this matter otherwise i have to do it manually.

cheers
Michelle