View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.newusers
Jim Jackson Jim Jackson is offline
external usenet poster
 
Posts: 324
Default Change all text one font size up with various font sizes used.

Range("A1:Z3000").Select ' Or your preferred range
With Selection
..Font.Size = 12 ' set the size to suit
End With
--
Best wishes,

Jim


"omchrystal" wrote:

In a spread sheet where fonts vary in size, is readable on screen and prints
out very small, how can I change all font sizes at once without changing
anything else in my document?