Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 846
Default Multiple format single cell that has formula's

Is there a way to have multiple formats in a single cell that has formula's?

What I'm doing specifically is attaching several strings together and it
would be great to be control the format in the cell.
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 82
Default Multiple format single cell that has formula's

Try using conditional formatting. It will take up to three conditions and
will format according to the criteria you specify. You can add a fourth by
setting a default format that Excel will use if none of your other criteria
are met.
--
HTH

JonR


"Brad" wrote:

Is there a way to have multiple formats in a single cell that has formula's?

What I'm doing specifically is attaching several strings together and it
would be great to be control the format in the cell.

  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 1,173
Default Multiple format single cell that has formula's

Or unlimited in XL2007

--
HTH
Nick Hodge
Microsoft MVP - Excel
Southampton, England
DTHIS
web:
www.nickhodge.co.uk
blog (non-tech): www.nickhodge.co.uk/blog/

"JonR" wrote in message
...
Try using conditional formatting. It will take up to three conditions and
will format according to the criteria you specify. You can add a fourth
by
setting a default format that Excel will use if none of your other
criteria
are met.
--
HTH

JonR


"Brad" wrote:

Is there a way to have multiple formats in a single cell that has
formula's?

What I'm doing specifically is attaching several strings together and it
would be great to be control the format in the cell.


  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 846
Default Multiple format single cell that has formula's

My question is this
I want the first word to be bold - second word to be italizied - third to be
underlined ,...

Conditional formatting will change the whole cell to be whatever you specify
- but will not change only a portion of the cell to be bold another portion
to be something different

If there are no formulas - one can change the text as I described above.
Was wondering if there was a way with formulas?

"JonR" wrote:

Try using conditional formatting. It will take up to three conditions and
will format according to the criteria you specify. You can add a fourth by
setting a default format that Excel will use if none of your other criteria
are met.
--
HTH

JonR


"Brad" wrote:

Is there a way to have multiple formats in a single cell that has formula's?

What I'm doing specifically is attaching several strings together and it
would be great to be control the format in the cell.

  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 1,173
Default Multiple format single cell that has formula's

Brad

Formulas can only return values, they cannot change formatting etc. Formats
only operate on entire cells, not part of it and whilst you can manually
change part of the cell, bold, etc there is no way to do this without VBA
code

--
HTH
Nick Hodge
Microsoft MVP - Excel
Southampton, England
DTHIS
web:
www.nickhodge.co.uk
blog (non-tech): www.nickhodge.co.uk/blog/

"Brad" wrote in message
...
My question is this
I want the first word to be bold - second word to be italizied - third to
be
underlined ,...

Conditional formatting will change the whole cell to be whatever you
specify
- but will not change only a portion of the cell to be bold another
portion
to be something different

If there are no formulas - one can change the text as I described above.
Was wondering if there was a way with formulas?

"JonR" wrote:

Try using conditional formatting. It will take up to three conditions
and
will format according to the criteria you specify. You can add a fourth
by
setting a default format that Excel will use if none of your other
criteria
are met.
--
HTH

JonR


"Brad" wrote:

Is there a way to have multiple formats in a single cell that has
formula's?

What I'm doing specifically is attaching several strings together and
it
would be great to be control the format in the cell.




  #6   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 846
Default Multiple format single cell that has formula's

So you can do it in VBA.

Since you can't record a macro to do this. Would you specify what positions
would have what formats? Do you have a simple procedure that I could look
at?

"Nick Hodge" wrote:

Brad

Formulas can only return values, they cannot change formatting etc. Formats
only operate on entire cells, not part of it and whilst you can manually
change part of the cell, bold, etc there is no way to do this without VBA
code

--
HTH
Nick Hodge
Microsoft MVP - Excel
Southampton, England
DTHIS
web:
www.nickhodge.co.uk
blog (non-tech): www.nickhodge.co.uk/blog/

"Brad" wrote in message
...
My question is this
I want the first word to be bold - second word to be italizied - third to
be
underlined ,...

Conditional formatting will change the whole cell to be whatever you
specify
- but will not change only a portion of the cell to be bold another
portion
to be something different

If there are no formulas - one can change the text as I described above.
Was wondering if there was a way with formulas?

"JonR" wrote:

Try using conditional formatting. It will take up to three conditions
and
will format according to the criteria you specify. You can add a fourth
by
setting a default format that Excel will use if none of your other
criteria
are met.
--
HTH

JonR


"Brad" wrote:

Is there a way to have multiple formats in a single cell that has
formula's?

What I'm doing specifically is attaching several strings together and
it
would be great to be control the format in the cell.


  #7   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 82
Default Multiple format single cell that has formula's

Are you trying to format the results a concatenate formula or something like
that? Interesting problem. I've not tried that before. It might help if I
knew what you were trying to format and the conditions you are trying to
satisfy.
--
HTH

JonR


"Brad" wrote:

My question is this
I want the first word to be bold - second word to be italizied - third to be
underlined ,...

Conditional formatting will change the whole cell to be whatever you specify
- but will not change only a portion of the cell to be bold another portion
to be something different

If there are no formulas - one can change the text as I described above.
Was wondering if there was a way with formulas?

"JonR" wrote:

Try using conditional formatting. It will take up to three conditions and
will format according to the criteria you specify. You can add a fourth by
setting a default format that Excel will use if none of your other criteria
are met.
--
HTH

JonR


"Brad" wrote:

Is there a way to have multiple formats in a single cell that has formula's?

What I'm doing specifically is attaching several strings together and it
would be great to be control the format in the cell.

  #8   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 846
Default Multiple format single cell that has formula's

Simple Example
in a1 =B1&", "&C1&", "&D1

B1 = Peter
C1 = Paul
D1 = Mary

in A1
Peter needs to be in Times New Roman 10 point - bold - red
Paul needs to be in Arial - underlined 12 point - blue
Mary needs to be 18 font italicizied - purple

My problem isn't quite this easy - but the concept is the same.


"JonR" wrote:

Are you trying to format the results a concatenate formula or something like
that? Interesting problem. I've not tried that before. It might help if I
knew what you were trying to format and the conditions you are trying to
satisfy.
--
HTH

JonR


"Brad" wrote:

My question is this
I want the first word to be bold - second word to be italizied - third to be
underlined ,...

Conditional formatting will change the whole cell to be whatever you specify
- but will not change only a portion of the cell to be bold another portion
to be something different

If there are no formulas - one can change the text as I described above.
Was wondering if there was a way with formulas?

"JonR" wrote:

Try using conditional formatting. It will take up to three conditions and
will format according to the criteria you specify. You can add a fourth by
setting a default format that Excel will use if none of your other criteria
are met.
--
HTH

JonR


"Brad" wrote:

Is there a way to have multiple formats in a single cell that has formula's?

What I'm doing specifically is attaching several strings together and it
would be great to be control the format in the cell.

  #9   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 35,218
Default Multiple format single cell that has formula's

Formulas don't support this kind of formatting.

If you convert it to values, you can change the formatting the way you like.

Brad wrote:

Simple Example
in a1 =B1&", "&C1&", "&D1

B1 = Peter
C1 = Paul
D1 = Mary

in A1
Peter needs to be in Times New Roman 10 point - bold - red
Paul needs to be in Arial - underlined 12 point - blue
Mary needs to be 18 font italicizied - purple

My problem isn't quite this easy - but the concept is the same.

"JonR" wrote:

Are you trying to format the results a concatenate formula or something like
that? Interesting problem. I've not tried that before. It might help if I
knew what you were trying to format and the conditions you are trying to
satisfy.
--
HTH

JonR


"Brad" wrote:

My question is this
I want the first word to be bold - second word to be italizied - third to be
underlined ,...

Conditional formatting will change the whole cell to be whatever you specify
- but will not change only a portion of the cell to be bold another portion
to be something different

If there are no formulas - one can change the text as I described above.
Was wondering if there was a way with formulas?

"JonR" wrote:

Try using conditional formatting. It will take up to three conditions and
will format according to the criteria you specify. You can add a fourth by
setting a default format that Excel will use if none of your other criteria
are met.
--
HTH

JonR


"Brad" wrote:

Is there a way to have multiple formats in a single cell that has formula's?

What I'm doing specifically is attaching several strings together and it
would be great to be control the format in the cell.


--

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
Multiple hyperlinks in a single cell lorildemarco Excel Discussion (Misc queries) 3 August 7th 06 08:02 PM
Can I format an entire row based on the value of a single cell? LTShelley Excel Discussion (Misc queries) 1 August 11th 05 07:37 PM
can a single cell contain multiple numbers? jw446 Excel Worksheet Functions 5 August 10th 05 06:16 PM
How do I copy data in single cell format to a merged cell format Paul Excel Discussion (Misc queries) 1 June 27th 05 11:00 AM
Using a single cell in multiple formulas ebethcat Excel Worksheet Functions 1 May 26th 05 02:42 PM


All times are GMT +1. The time now is 12:36 AM.

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"