ipbr21054
Well-known Member
- Joined
- Nov 16, 2010
- Messages
- 5,752
- Office Version
- 2007
- Platform
- Windows
Hi,
I have some values that when printed are to small.
So i wish to enlarge the Font size to say 20 BUT only within a specific range as to not change row height on the same row of which are Font size 12
Is that possible ?
Example.
Range A1:A20 Font size 12
Range A24:A30 Font Size 20
Currently if i use A24:A30 Font Size 20 the row height alters thus affecting A1:A20
If the above cant be done then maybe using the range create a pdf, Then Print pdf as a work around.
Not sure how i would alter size of text on the pdf though ?
Currently using this to print.
VBA Code:
Private Sub PrintOutRange_Click()
Range("T1:X20").PrintOut
ActiveSheet.PageSetup.Orientation = xlPortrait
End Sub
Thanks.
I have some values that when printed are to small.
So i wish to enlarge the Font size to say 20 BUT only within a specific range as to not change row height on the same row of which are Font size 12
Is that possible ?
Example.
Range A1:A20 Font size 12
Range A24:A30 Font Size 20
Currently if i use A24:A30 Font Size 20 the row height alters thus affecting A1:A20
If the above cant be done then maybe using the range create a pdf, Then Print pdf as a work around.
Not sure how i would alter size of text on the pdf though ?
Currently using this to print.
VBA Code:
Private Sub PrintOutRange_Click()
Range("T1:X20").PrintOut
ActiveSheet.PageSetup.Orientation = xlPortrait
End Sub
Thanks.
Last edited by a moderator: