Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
How can I have the entire ROW in the subtotal routine BOLD?
|
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi
Rows(X).entirerow.font.bold=true where X is the row number. Regards, Per "Helmut" skrev i en meddelelse ... How can I have the entire ROW in the subtotal routine BOLD? |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
No need for Entirerow
Rows(X).font.bold=true Rows is the entire row -- --- HTH Bob (there's no email, no snail mail, but somewhere should be gmail in my addy) "Per Jessen" wrote in message ... Hi Rows(X).entirerow.font.bold=true where X is the row number. Regards, Per "Helmut" skrev i en meddelelse ... How can I have the entire ROW in the subtotal routine BOLD? |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
What I have is this:
Range("A11").Select Selection.Subtotal GroupBy:=1, Function:=xlSum, TotalList:=Array(4, 5, 6, 7, _ 8, 9, 10), Replace:=True, PageBreaks:=False, SummaryBelowData:=True I don't know "X". it is determined by the above sugtotal routine. where the subtotal row should be entirely bold. "Bob Phillips" wrote: No need for Entirerow Rows(X).font.bold=true Rows is the entire row -- --- HTH Bob (there's no email, no snail mail, but somewhere should be gmail in my addy) "Per Jessen" wrote in message ... Hi Rows(X).entirerow.font.bold=true where X is the row number. Regards, Per "Helmut" skrev i en meddelelse ... How can I have the entire ROW in the subtotal routine BOLD? |
#5
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Then Helmut right an additional line of code to find the bottom row and use
the cide the boys (assumption) gave you ie Range("a11").select Selection.End(xlDown).Select X=Activecell.Row Then use the other stuff to make bold. Aloha Jeff "Helmut" wrote in message ... What I have is this: Range("A11").Select Selection.Subtotal GroupBy:=1, Function:=xlSum, TotalList:=Array(4, 5, 6, 7, _ 8, 9, 10), Replace:=True, PageBreaks:=False, SummaryBelowData:=True I don't know "X". it is determined by the above sugtotal routine. where the subtotal row should be entirely bold. "Bob Phillips" wrote: No need for Entirerow Rows(X).font.bold=true Rows is the entire row -- --- HTH Bob (there's no email, no snail mail, but somewhere should be gmail in my addy) "Per Jessen" wrote in message ... Hi Rows(X).entirerow.font.bold=true where X is the row number. Regards, Per "Helmut" skrev i en meddelelse ... How can I have the entire ROW in the subtotal routine BOLD? |
#6
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi Dude,
Subtotals...there are many and only one GRAND Total which is the LAST. I need to BOLD the SUBTOTAL-LINEs of which there are many and NOT at the bottom. "Dude Ranch" wrote: Then Helmut right an additional line of code to find the bottom row and use the cide the boys (assumption) gave you ie Range("a11").select Selection.End(xlDown).Select X=Activecell.Row Then use the other stuff to make bold. Aloha Jeff "Helmut" wrote in message ... What I have is this: Range("A11").Select Selection.Subtotal GroupBy:=1, Function:=xlSum, TotalList:=Array(4, 5, 6, 7, _ 8, 9, 10), Replace:=True, PageBreaks:=False, SummaryBelowData:=True I don't know "X". it is determined by the above sugtotal routine. where the subtotal row should be entirely bold. "Bob Phillips" wrote: No need for Entirerow Rows(X).font.bold=true Rows is the entire row -- --- HTH Bob (there's no email, no snail mail, but somewhere should be gmail in my addy) "Per Jessen" wrote in message ... Hi Rows(X).entirerow.font.bold=true where X is the row number. Regards, Per "Helmut" skrev i en meddelelse ... How can I have the entire ROW in the subtotal routine BOLD? |
#7
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Record a macro when you hide the details
Select the range you want bold Edit|goto|special|visible cells onl Format the selection to bold And you'll have code that should work ok. Helmut wrote: How can I have the entire ROW in the subtotal routine BOLD? -- Dave Peterson |
#8
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi dave,
Can you translate this to Excel2007? "Dave Peterson" wrote: Record a macro when you hide the details Select the range you want bold Edit|goto|special|visible cells onl Format the selection to bold And you'll have code that should work ok. Helmut wrote: How can I have the entire ROW in the subtotal routine BOLD? -- Dave Peterson |
#9
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
First you need to have the Developer tab showing.
Click the big orange Office button, then the Excel Options button. Select Popular from the left pane, and then check 'Show Developer tab in the Ribbon'. You then have access to record as in pre-2007 Excel in the Code group. -- --- HTH Bob (there's no email, no snail mail, but somewhere should be gmail in my addy) "Helmut" wrote in message ... Hi dave, Can you translate this to Excel2007? "Dave Peterson" wrote: Record a macro when you hide the details Select the range you want bold Edit|goto|special|visible cells onl Format the selection to bold And you'll have code that should work ok. Helmut wrote: How can I have the entire ROW in the subtotal routine BOLD? -- Dave Peterson |
#10
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
There are shortcuts to do the equivalent of edit|goto (in xl2003):
You could hit the F5 key or hit ctrl-g. Helmut wrote: Hi dave, Can you translate this to Excel2007? "Dave Peterson" wrote: Record a macro when you hide the details Select the range you want bold Edit|goto|special|visible cells onl Format the selection to bold And you'll have code that should work ok. Helmut wrote: How can I have the entire ROW in the subtotal routine BOLD? -- Dave Peterson -- Dave Peterson |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Alphabetically list of names BOLD and NOT bold | Excel Discussion (Misc queries) | |||
Bold & add line after subtotal row | Excel Worksheet Functions | |||
Excel subtotal function- put subtotals in bold text | Excel Discussion (Misc queries) | |||
excel subtotal funtion how do you get the result in bold type? | Excel Worksheet Functions | |||
Join bold and non-bold text in one cell | Excel Discussion (Misc queries) |