Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
KimberlyC
 
Posts: n/a
Default Fomatting part of a formula to be Bold font

Hi,
Is there a way to add formatting to this formula to make the "Time Period: "
bold and leave the rest of it in regular text?

="Time Period: "& TEXT(From2,"mm/dd/yyyy")&" - "&TEXT(To2,"mm/dd/yyyy")

Thanks in advance for you help!!
Kimberly



  #2   Report Post  
Harlan Grove
 
Posts: n/a
Default

KimberlyC wrote...
Is there a way to add formatting to this formula to make the "Time

Period: "
bold and leave the rest of it in regular text?

="Time Period: "& TEXT(From2,"mm/dd/yyyy")&" -

"&TEXT(To2,"mm/dd/yyyy")
....

No. Excel doesn't provide such functionality.

  #3   Report Post  
Max
 
Posts: n/a
Default

If you find it worth the trouble, think the result cell could be "dressed
up" to appear as desired, via a disguised textbox which sits
directly/exactly over the result cell.

Here's the play ..

Assume From2, To2 are named ranges referring to A1 & B1 respectively, and
that C1 contains just:
=TEXT(From2,"mm/dd/yyyy")&" - "&TEXT(To2,"mm/dd/yyyy")

Draw a textbox to fit exactly over C1
(hold down Alt key to resize/fit to grid)

Right-click on textbox Format textbox Colors and Lines tab
Set the Fill to: No Fill, Line color to: No Line

Enter the text: "Time Period:"
Set the font to bold (or whatever you want)
and Text alignment to "Horizontal: Left"

Stretch / resize C1 (i.e. col C) so that both the text in the textbox
and the result in C1 shows through
(Right-align the evaluated value in C1)

If A1 contains: 01-May-2005, B1 contains: 02-May-2005
then C1 will appear as:
Time Period: 05/01/2005 - 05/02/2005
(with "Time Period:" in bold/formatted as desired)

Note tha with the textbox fitted over C1,
you need to use the arrow keys to navigate to select cell C1

Sample file for the above is at:
http://flypicture.com/p.cfm?id=44172
(right-click on the link "Download File" at the top of the page)
File: KimberlyC_wksht.xls

--
Rgds
Max
xl 97
---
GMT+8, 1° 22' N 103° 45' E
xdemechanik <atyahoo<dotcom
----
"KimberlyC" wrote in message
...
Hi,
Is there a way to add formatting to this formula to make the "Time Period:

"
bold and leave the rest of it in regular text?

="Time Period: "& TEXT(From2,"mm/dd/yyyy")&" - "&TEXT(To2,"mm/dd/yyyy")

Thanks in advance for you help!!
Kimberly



  #4   Report Post  
JE McGimpsey
 
Posts: n/a
Default

XL formulae can't change formatting, so you can't do this with a
worksheet function. However, you can, using an event macro.

Put this in your worksheet code module (right-click on the worksheet tab
and choose View Code):

Private Sub Worksheet_Calculate()
Const sPREFIX As String = "Time Period: "
With Range("A1")
.Font.Bold = False
Application.EnableEvents = False
.Value = sPREFIX & _
Format(Range("From2").Value, "mm/dd/yyyy - ") & _
Format(Range("To2").Value, "mm/dd/yyyy")
Application.EnableEvents = True
.Characters(1, Len(sPREFIX)).Font.Bold = True
End With
End Sub





In article ,
"KimberlyC" wrote:

Hi,
Is there a way to add formatting to this formula to make the "Time Period: "
bold and leave the rest of it in regular text?

="Time Period: "& TEXT(From2,"mm/dd/yyyy")&" - "&TEXT(To2,"mm/dd/yyyy")

Thanks in advance for you help!!
Kimberly

  #5   Report Post  
David McRitchie
 
Posts: n/a
Default

Very good John, I didn't pick up on the fact that the formula in
cell A1 (assigned in macro), that can't be partially formatted to
bold wasn't needed for calculations and could simply be eliminated
permanently as a formula and replaced with a text string that
can be partially formatted and whose value is calculated and
formatted in an event macro.
---
HTH,
David McRitchie, Microsoft MVP - Excel [site changed Nov. 2001]
My Excel Pages: http://www.mvps.org/dmcritchie/excel/excel.htm
Search Page: http://www.mvps.org/dmcritchie/excel/search.htm

"JE McGimpsey" wrote...
XL formulae can't change formatting, so you can't do this with a
worksheet function. However, you can, using an event macro.

Put this in your worksheet code module (right-click on the worksheet tab
and choose View Code):

Private Sub Worksheet_Calculate()
Const sPREFIX As String = "Time Period: "
With Range("A1")
.Font.Bold = False
Application.EnableEvents = False
.Value = sPREFIX & _
Format(Range("From2").Value, "mm/dd/yyyy - ") & _
Format(Range("To2").Value, "mm/dd/yyyy")
Application.EnableEvents = True
.Characters(1, Len(sPREFIX)).Font.Bold = True
End With
End Sub





In article ,
"KimberlyC" wrote:

Hi,
Is there a way to add formatting to this formula to make the "Time Period: "
bold and leave the rest of it in regular text?

="Time Period: "& TEXT(From2,"mm/dd/yyyy")&" - "&TEXT(To2,"mm/dd/yyyy")

Thanks in advance for you help!!
Kimberly





  #6   Report Post  
KimberlyC
 
Posts: n/a
Default

Thank you all!! :)
"KimberlyC" wrote in message
...
Hi,
Is there a way to add formatting to this formula to make the "Time Period:

"
bold and leave the rest of it in regular text?

="Time Period: "& TEXT(From2,"mm/dd/yyyy")&" - "&TEXT(To2,"mm/dd/yyyy")

Thanks in advance for you help!!
Kimberly





  #7   Report Post  
Max
 
Posts: n/a
Default

You're welcome!
--
Rgds
Max
xl 97
---
GMT+8, 1° 22' N 103° 45' E
xdemechanik <atyahoo<dotcom
----
"KimberlyC" wrote in message
...
Thank you all!! :)



  #8   Report Post  
 
Posts: n/a
Default

Kimberly -

Is there a particular reason for using only one cell?

Use 2 if you can. "Time Period:" in one formatted bold.

Text() in the next. Align and size as desired. Much easier.

....best, Hash

In article ,
"KimberlyC" wrote:

Hi,
Is there a way to add formatting to this formula to make the "Time Period: "
bold and leave the rest of it in regular text?

="Time Period: "& TEXT(From2,"mm/dd/yyyy")&" - "&TEXT(To2,"mm/dd/yyyy")

Thanks in advance for you help!!
Kimberly



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
Named SUM Formula with relative refernce(s) Werner Rohrmoser Excel Worksheet Functions 2 April 20th 05 04:56 PM
revert formula insertion to old method Don't be a pain in the ass Setting up and Configuration of Excel 0 January 24th 05 01:49 PM
How do I copy a formula in excel where part remains absolute the . SRF Excel Discussion (Misc queries) 1 January 7th 05 01:41 PM
Bold part of formula results Rita Palazzi Excel Discussion (Misc queries) 4 December 16th 04 07:51 PM
What instead of an array formula part 2 Reg Besseling Excel Discussion (Misc queries) 2 December 10th 04 07:35 AM


All times are GMT +1. The time now is 06:58 PM.

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

About Us

"It's about Microsoft Excel"