Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Hi all
When creating a custom number format, how would you ask it to show text in 'bold and size 12 font'? Thank you Louise |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Hi Louise:
NumberFormats and font characteristics are separate: Sub Macro1() Selection.NumberFormat = "yy-mm-dd" With Selection.Font .FontStyle = "Bold" .Size = 12 End With End Sub -- Gary''s Student "Louise" wrote: Hi all When creating a custom number format, how would you ask it to show text in 'bold and size 12 font'? Thank you Louise |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
So is this not possible to do via Format, Cells, Custom?
Thank you. Louise "Gary''s Student" wrote: Hi Louise: NumberFormats and font characteristics are separate: Sub Macro1() Selection.NumberFormat = "yy-mm-dd" With Selection.Font .FontStyle = "Bold" .Size = 12 End With End Sub -- Gary''s Student "Louise" wrote: Hi all When creating a custom number format, how would you ask it to show text in 'bold and size 12 font'? Thank you Louise |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
correct I'm afraid - custom formats allow you to alter the formatting
of the number (so you can include symbols, change decimals, format the date as month etc) but you cannot change the format of the cell (that would be custom cell format, not custom number format) and such an option does not exist Louise wrote: So is this not possible to do via Format, Cells, Custom? Thank you. Louise "Gary''s Student" wrote: Hi Louise: NumberFormats and font characteristics are separate: Sub Macro1() Selection.NumberFormat = "yy-mm-dd" With Selection.Font .FontStyle = "Bold" .Size = 12 End With End Sub -- Gary''s Student "Louise" wrote: Hi all When creating a custom number format, how would you ask it to show text in 'bold and size 12 font'? Thank you Louise |
#5
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Thank you for your reply.
Is it possible then to format the NUMBERS into size 12 font and bold? Thanks again. Louise " wrote: correct I'm afraid - custom formats allow you to alter the formatting of the number (so you can include symbols, change decimals, format the date as month etc) but you cannot change the format of the cell (that would be custom cell format, not custom number format) and such an option does not exist Louise wrote: So is this not possible to do via Format, Cells, Custom? Thank you. Louise "Gary''s Student" wrote: Hi Louise: NumberFormats and font characteristics are separate: Sub Macro1() Selection.NumberFormat = "yy-mm-dd" With Selection.Font .FontStyle = "Bold" .Size = 12 End With End Sub -- Gary''s Student "Louise" wrote: Hi all When creating a custom number format, how would you ask it to show text in 'bold and size 12 font'? Thank you Louise |
#6
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Not with the custom format. Why do you want to so it via the custom format? Maybe there is an easy other solution for what you're
trying to achieve. -- Kind regards, Niek Otten "Louise" wrote in message ... | Thank you for your reply. | Is it possible then to format the NUMBERS into size 12 font and bold? | Thanks again. | Louise | | " wrote: | | correct I'm afraid - custom formats allow you to alter the formatting | of the number (so you can include symbols, change decimals, format the | date as month etc) but you cannot change the format of the cell (that | would be custom cell format, not custom number format) and such an | option does not exist | Louise wrote: | So is this not possible to do via Format, Cells, Custom? | Thank you. | Louise | | "Gary''s Student" wrote: | | Hi Louise: | | NumberFormats and font characteristics are separate: | | | Sub Macro1() | Selection.NumberFormat = "yy-mm-dd" | With Selection.Font | .FontStyle = "Bold" | .Size = 12 | End With | End Sub | -- | Gary''s Student | | | "Louise" wrote: | | Hi all | | When creating a custom number format, how would you ask it to show text in | 'bold and size 12 font'? | | Thank you | | Louise | | |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Format a cell with a custom number format | Excel Worksheet Functions | |||
Newbie Help for Custom Number Formats | New Users to Excel | |||
Auto Formatting Custom Number | Excel Discussion (Misc queries) | |||
Custom Number format question | Excel Discussion (Misc queries) | |||
Custom Formats | Excel Discussion (Misc queries) |