Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
pm pm is offline
external usenet poster
 
Posts: 122
Default Bold font for Location Totals

I am trying to bold the 'Location Totals' within a macro. Any suggestions?

703.54
Loc 9 10067 TILLMAN, CHARLOTTE
Loc 9 10412 HUDSON, DESMOND
Loc 9 10716 TURNER,TERRENCE L
Loc 9 9 Location Totals
Loc 16 8338 LEYVA, ADOLFO
Loc 16 16 Location Totals
Loc 17 8980 ODUNZE, KELECHI C
Loc 17 17 Location Totals

  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 59
Default Bold font for Location Totals

You could do this by choosing conditional Formatting under Format menu, then
select 'is equal to' and type 'Location Totals' and then pick bold font type
and click ok, ok.
--
Please post all your inquiries on this community so we can all benefit -
Thank you!


"pm" wrote:

I am trying to bold the 'Location Totals' within a macro. Any suggestions?

703.54
Loc 9 10067 TILLMAN, CHARLOTTE
Loc 9 10412 HUDSON, DESMOND
Loc 9 10716 TURNER,TERRENCE L
Loc 9 9 Location Totals
Loc 16 8338 LEYVA, ADOLFO
Loc 16 16 Location Totals
Loc 17 8980 ODUNZE, KELECHI C
Loc 17 17 Location Totals

  #3   Report Post  
Posted to microsoft.public.excel.misc
pm pm is offline
external usenet poster
 
Posts: 122
Default Bold font for Location Totals

Hi Adnan,

I tried your suggestion, but it didn't bold the text. I'm obviously missing
something. And, is there any way to bold the entire row?
Thanks.

"Adnan" wrote:

You could do this by choosing conditional Formatting under Format menu, then
select 'is equal to' and type 'Location Totals' and then pick bold font type
and click ok, ok.
--
Please post all your inquiries on this community so we can all benefit -
Thank you!


"pm" wrote:

I am trying to bold the 'Location Totals' within a macro. Any suggestions?

703.54
Loc 9 10067 TILLMAN, CHARLOTTE
Loc 9 10412 HUDSON, DESMOND
Loc 9 10716 TURNER,TERRENCE L
Loc 9 9 Location Totals
Loc 16 8338 LEYVA, ADOLFO
Loc 16 16 Location Totals
Loc 17 8980 ODUNZE, KELECHI C
Loc 17 17 Location Totals

  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 35,218
Default Bold font for Location Totals

Select the whole range.
with the activecell in row 2 (headers in row 1???)
format|conditional formatting
formula is:
=$c3="Location totals"

The $c means that the formula will always point to column C.

The 3 (without the $) means that the formula will adjust to the row--just like
copying a formula in a cell.

pm wrote:

Hi Adnan,

I tried your suggestion, but it didn't bold the text. I'm obviously missing
something. And, is there any way to bold the entire row?
Thanks.

"Adnan" wrote:

You could do this by choosing conditional Formatting under Format menu, then
select 'is equal to' and type 'Location Totals' and then pick bold font type
and click ok, ok.
--
Please post all your inquiries on this community so we can all benefit -
Thank you!


"pm" wrote:

I am trying to bold the 'Location Totals' within a macro. Any suggestions?

703.54
Loc 9 10067 TILLMAN, CHARLOTTE
Loc 9 10412 HUDSON, DESMOND
Loc 9 10716 TURNER,TERRENCE L
Loc 9 9 Location Totals
Loc 16 8338 LEYVA, ADOLFO
Loc 16 16 Location Totals
Loc 17 8980 ODUNZE, KELECHI C
Loc 17 17 Location Totals


--

Dave Peterson
  #5   Report Post  
Posted to microsoft.public.excel.misc
pm pm is offline
external usenet poster
 
Posts: 122
Default Bold font for Location Totals

Dave -
I selected the entire range from Loc to Order - inserted the formula
=$d8="Location Totals" - still didn't highlight totals......what am i
missing. Thanks.

Loc Empl# Employee Name Mt Order


9 10067 TILLMAN, CHARLOTTE DP 4431420
9 10412 HUDSON, DESMOND DP 3210611
9 10716 TURNER,TERRENCE L OF 3869217
9 9 Location Totals 3
16 8338 LEYVA, ADOLFO OF 10785200
16 16 Location Totals 1
17 8980 ODUNZE, KELECHI C I6 10749507
17 17 Location Totals 1


"Dave Peterson" wrote:

Select the whole range.
with the activecell in row 2 (headers in row 1???)
format|conditional formatting
formula is:
=$c3="Location totals"

The $c means that the formula will always point to column C.

The 3 (without the $) means that the formula will adjust to the row--just like
copying a formula in a cell.

pm wrote:

Hi Adnan,

I tried your suggestion, but it didn't bold the text. I'm obviously missing
something. And, is there any way to bold the entire row?
Thanks.

"Adnan" wrote:

You could do this by choosing conditional Formatting under Format menu, then
select 'is equal to' and type 'Location Totals' and then pick bold font type
and click ok, ok.
--
Please post all your inquiries on this community so we can all benefit -
Thank you!


"pm" wrote:

I am trying to bold the 'Location Totals' within a macro. Any suggestions?

703.54
Loc 9 10067 TILLMAN, CHARLOTTE
Loc 9 10412 HUDSON, DESMOND
Loc 9 10716 TURNER,TERRENCE L
Loc 9 9 Location Totals
Loc 16 8338 LEYVA, ADOLFO
Loc 16 16 Location Totals
Loc 17 8980 ODUNZE, KELECHI C
Loc 17 17 Location Totals


--

Dave Peterson



  #6   Report Post  
Posted to microsoft.public.excel.misc
pm pm is offline
external usenet poster
 
Posts: 122
Default Bold font for Location Totals

THANKS DAVE.....I got it!!

"Dave Peterson" wrote:

Select the whole range.
with the activecell in row 2 (headers in row 1???)
format|conditional formatting
formula is:
=$c3="Location totals"

The $c means that the formula will always point to column C.

The 3 (without the $) means that the formula will adjust to the row--just like
copying a formula in a cell.

pm wrote:

Hi Adnan,

I tried your suggestion, but it didn't bold the text. I'm obviously missing
something. And, is there any way to bold the entire row?
Thanks.

"Adnan" wrote:

You could do this by choosing conditional Formatting under Format menu, then
select 'is equal to' and type 'Location Totals' and then pick bold font type
and click ok, ok.
--
Please post all your inquiries on this community so we can all benefit -
Thank you!


"pm" wrote:

I am trying to bold the 'Location Totals' within a macro. Any suggestions?

703.54
Loc 9 10067 TILLMAN, CHARLOTTE
Loc 9 10412 HUDSON, DESMOND
Loc 9 10716 TURNER,TERRENCE L
Loc 9 9 Location Totals
Loc 16 8338 LEYVA, ADOLFO
Loc 16 16 Location Totals
Loc 17 8980 ODUNZE, KELECHI C
Loc 17 17 Location Totals


--

Dave Peterson

Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
How do I bold just the totals when using Subtotals? Victor Excel Worksheet Functions 2 March 20th 07 04:15 PM
How to show only bold font ? hamz Excel Worksheet Functions 2 March 8th 06 04:51 AM
Fomatting part of a formula to be Bold font KimberlyC Excel Worksheet Functions 7 May 6th 05 02:18 AM
Bold the totals of a sub-total. sassyvh Setting up and Configuration of Excel 0 February 27th 05 02:43 AM
Are sub-totals able to be set to be bold automatically? Ellie Excel Discussion (Misc queries) 1 February 2nd 05 01:31 PM


All times are GMT +1. The time now is 03:00 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"