Thread
:
How do I decrease the value of a column by 10%
View Single Post
#
2
Posted to microsoft.public.excel.programming
Gary Keramidas
external usenet poster
Posts: 2,494
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
Reply With Quote
Gary Keramidas
View Public Profile
Find all posts by Gary Keramidas