Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1
Default Is it possible to make a word in a formula bold?


You folks are incredible! Two questions and they were answered almost
as fast as I clicked "SUBMIT NEW THREAD".

I hate to sound as if I am dumping all my problems on you folks, but I
really am attempting to try these things before I make a post here.

My next dilemma is trying to make a word within a formula *bold*.

The word doesn't have to be bolded depending on the result. It will
either appear or not based on the result of the formula. But
obviously, if it appears, it [should] be bolded...

Obviously you can't format text on the formula bar. This is something
I've wanted to do in Excel for YEARS!

Any gurus out there know?

Thanks for all your instant help everyone.

Mike


--
SpielbergRules
------------------------------------------------------------------------
SpielbergRules's Profile: http://www.excelforum.com/member.php...o&userid=35981
View this thread: http://www.excelforum.com/showthread...hreadid=557684

  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 35,218
Default Is it possible to make a word in a formula bold?

Formulas don't support that kind of character by character formatting.

SpielbergRules wrote:

You folks are incredible! Two questions and they were answered almost
as fast as I clicked "SUBMIT NEW THREAD".

I hate to sound as if I am dumping all my problems on you folks, but I
really am attempting to try these things before I make a post here.

My next dilemma is trying to make a word within a formula *bold*.

The word doesn't have to be bolded depending on the result. It will
either appear or not based on the result of the formula. But
obviously, if it appears, it [should] be bolded...

Obviously you can't format text on the formula bar. This is something
I've wanted to do in Excel for YEARS!

Any gurus out there know?

Thanks for all your instant help everyone.

Mike

--
SpielbergRules
------------------------------------------------------------------------
SpielbergRules's Profile: http://www.excelforum.com/member.php...o&userid=35981
View this thread: http://www.excelforum.com/showthread...hreadid=557684


--

Dave Peterson
  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1
Default Is it possible to make a word in a formula bold?


Thanks for that info. I hope Microsoft can take note of this. I can't
imagine I am the only one who would need this. Or am I?

Thanks again

Mike


--
SpielbergRules
------------------------------------------------------------------------
SpielbergRules's Profile: http://www.excelforum.com/member.php...o&userid=35981
View this thread: http://www.excelforum.com/showthread...hreadid=557684

  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1
Default Is it possible to make a word in a formula bold?


You could try a worksheetchange event
This example says, if A1= Sunday then bold if not then don't bold
enter the code in the worksheet module

Private Sub Worksheet_Change(ByVal Target As Range)
If Union(Range("$A1"), Target).Address = Range("$A1").Address Then
If Target = "Sunday" Then
Target.Font.Bold = True
Else
Target.Font.Bold = False

End If
End If
End Sub


--
davesexcel


------------------------------------------------------------------------
davesexcel's Profile: http://www.excelforum.com/member.php...o&userid=31708
View this thread: http://www.excelforum.com/showthread...hreadid=557684

  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 3,572
Default Is it possible to make a word in a formula bold?

If you say that it either "displays or not", couldn't you just format the
cell that the formula is in?
--
Regards,

RD

---------------------------------------------------------------------------
Please keep all correspondence within the NewsGroup, so all may benefit !
---------------------------------------------------------------------------
"SpielbergRules"
<SpielbergRules.2abrh0_1151855104.0368@excelforu m-nospam.com wrote in
message news:SpielbergRules.2abrh0_1151855104.0368@excelfo rum-nospam.com...

Thanks for that info. I hope Microsoft can take note of this. I can't
imagine I am the only one who would need this. Or am I?

Thanks again

Mike


--
SpielbergRules
------------------------------------------------------------------------
SpielbergRules's Profile:

http://www.excelforum.com/member.php...o&userid=35981
View this thread: http://www.excelforum.com/showthread...hreadid=557684




  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 35,218
Default Is it possible to make a word in a formula bold?

It's been asked for lots of times.

But for me, I wouldn't know how to begin:

It sounds pretty difficult to even start if I have formulas like:

="spielbergrules"
="spiel"&"be"&"rg"&"Rules"
=a1&b1&c1
=left(a1,5)&mid(b2,4)&"rules"

=====
On the other hand, older versions of Lotus 123 allowed you to embed formatting
characters in formulas--bold, colors, blinking were all supported, IIRC.




SpielbergRules wrote:

Thanks for that info. I hope Microsoft can take note of this. I can't
imagine I am the only one who would need this. Or am I?

Thanks again

Mike

--
SpielbergRules
------------------------------------------------------------------------
SpielbergRules's Profile: http://www.excelforum.com/member.php...o&userid=35981
View this thread: http://www.excelforum.com/showthread...hreadid=557684


--

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
copy and pasting a find all list into another column Ben Excel Discussion (Misc queries) 18 December 31st 05 10:51 PM
in an excel macro can you import data from word into a cell? Trefor Excel Discussion (Misc queries) 11 October 6th 05 01:49 PM
Formula checking multiple worksheets sonic-the-mouse Excel Worksheet Functions 2 June 5th 05 07:48 PM
Formula checking multiple worksheets sonic-the-mouse Excel Worksheet Functions 2 June 5th 05 03:28 AM
how do I make a formula NOT change when the data range is moved? Alida Andrews Excel Discussion (Misc queries) 2 January 6th 05 09:02 PM


All times are GMT +1. The time now is 09:22 PM.

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"