Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.charting
external usenet poster
 
Posts: 24
Default Formating textbox on a chart

I have a dollar amount created with the formula
=IF(NewProfit<0,"$"&FIXED(-NewProfit,-2),"$"&FIXED(NewProfit,-2)) in an
Excel spreadsheet which is linked to a textbox on a chart.

I would like to format the numbers in the chart 1) Bold and 2) Blue when
positive and Red when negative.



Any suggestion would be greatly appreciated,



Roger


  #2   Report Post  
Posted to microsoft.public.excel.charting
external usenet poster
 
Posts: 6,582
Default Formating textbox on a chart

You can just select the textbox and select Bold.

You don't need the IF to get conditional formatting or your dollar format.
The cell just needs this formula

=ROUND(NewProfit,-2)

(FIXED results in text, not a number) and a custom number format of

[blue]$#,##0;[red]$-#,##0;$0;@

Link the textbox to the cell, and apply the same number format to the
textbox.

More on number formats:

http://peltiertech.com/Excel/NumberFormats.html

- Jon
-------
Jon Peltier, Microsoft Excel MVP
Tutorials and Custom Solutions
http://PeltierTech.com
_______


"Roger B." wrote in message
...
I have a dollar amount created with the formula
=IF(NewProfit<0,"$"&FIXED(-NewProfit,-2),"$"&FIXED(NewProfit,-2)) in an
Excel spreadsheet which is linked to a textbox on a chart.

I would like to format the numbers in the chart 1) Bold and 2) Blue when
positive and Red when negative.



Any suggestion would be greatly appreciated,



Roger




  #3   Report Post  
Posted to microsoft.public.excel.charting
external usenet poster
 
Posts: 24
Default Formating textbox on a chart

Jon, thanks so much for your update. It was very helpful. There is only
one problem: I can't get the "Format Cells, Number" when working in the
TextBox. Instead I get "Format TextBox" but can't find the numbers. Also
looked at your website but couldn't find the cure.
Any suggestions would be very helpful.
Thanks,
Roger


"Jon Peltier" wrote in message
...
You can just select the textbox and select Bold.

You don't need the IF to get conditional formatting or your dollar format.
The cell just needs this formula

=ROUND(NewProfit,-2)

(FIXED results in text, not a number) and a custom number format of

[blue]$#,##0;[red]$-#,##0;$0;@

Link the textbox to the cell, and apply the same number format to the
textbox.

More on number formats:

http://peltiertech.com/Excel/NumberFormats.html

- Jon
-------
Jon Peltier, Microsoft Excel MVP
Tutorials and Custom Solutions
http://PeltierTech.com
_______


"Roger B." wrote in message
...
I have a dollar amount created with the formula
=IF(NewProfit<0,"$"&FIXED(-NewProfit,-2),"$"&FIXED(NewProfit,-2)) in an
Excel spreadsheet which is linked to a textbox on a chart.

I would like to format the numbers in the chart 1) Bold and 2) Blue when
positive and Red when negative.



Any suggestion would be greatly appreciated,



Roger






  #4   Report Post  
Posted to microsoft.public.excel.charting
external usenet poster
 
Posts: 2,489
Default Formating textbox on a chart

Hi,

I think maybe Jon was think of a data label, which does have a number
format.

For textboxes I think you will need to use 2 of everything.
2 formula to display the result
positive
=IF(ROUND(NewProfit,-2)=0,ROUND(NewProfit,-2),"")

negative
=IF(ROUND(NewProfit,-2)<0,ROUND(NewProfit,-2),"")

and 2 textboxes with the correct formatting applied.

Cheers
Andy

Roger B. wrote:
Jon, thanks so much for your update. It was very helpful. There is only
one problem: I can't get the "Format Cells, Number" when working in the
TextBox. Instead I get "Format TextBox" but can't find the numbers. Also
looked at your website but couldn't find the cure.
Any suggestions would be very helpful.
Thanks,
Roger


"Jon Peltier" wrote in message
...

You can just select the textbox and select Bold.

You don't need the IF to get conditional formatting or your dollar format.
The cell just needs this formula

=ROUND(NewProfit,-2)

(FIXED results in text, not a number) and a custom number format of

[blue]$#,##0;[red]$-#,##0;$0;@

Link the textbox to the cell, and apply the same number format to the
textbox.

More on number formats:

http://peltiertech.com/Excel/NumberFormats.html

- Jon
-------
Jon Peltier, Microsoft Excel MVP
Tutorials and Custom Solutions
http://PeltierTech.com
_______


"Roger B." wrote in message
.. .

I have a dollar amount created with the formula
=IF(NewProfit<0,"$"&FIXED(-NewProfit,-2),"$"&FIXED(NewProfit,-2)) in an
Excel spreadsheet which is linked to a textbox on a chart.

I would like to format the numbers in the chart 1) Bold and 2) Blue when
positive and Red when negative.



Any suggestion would be greatly appreciated,



Roger







--

Andy Pope, Microsoft MVP - Excel
http://www.andypope.info
  #5   Report Post  
Posted to microsoft.public.excel.charting
external usenet poster
 
Posts: 6,582
Default Formating textbox on a chart

Sorry. I was thinking of textboxes, but I wasn't testing, just typing.
Otherwise I'd have noticed the lack of number formatting in a text box. My
Bad.

Jon Peltier, Microsoft Excel MVP
http://PeltierTech.com


"Andy Pope" wrote in message
...
Hi,

I think maybe Jon was think of a data label, which does have a number
format.

For textboxes I think you will need to use 2 of everything.
2 formula to display the result
positive
=IF(ROUND(NewProfit,-2)=0,ROUND(NewProfit,-2),"")

negative
=IF(ROUND(NewProfit,-2)<0,ROUND(NewProfit,-2),"")

and 2 textboxes with the correct formatting applied.

Cheers
Andy

Roger B. wrote:
Jon, thanks so much for your update. It was very helpful. There is only
one problem: I can't get the "Format Cells, Number" when working in the
TextBox. Instead I get "Format TextBox" but can't find the numbers.
Also looked at your website but couldn't find the cure.
Any suggestions would be very helpful.
Thanks,
Roger


"Jon Peltier" wrote in message
...

You can just select the textbox and select Bold.

You don't need the IF to get conditional formatting or your dollar
format. The cell just needs this formula

=ROUND(NewProfit,-2)

(FIXED results in text, not a number) and a custom number format of

[blue]$#,##0;[red]$-#,##0;$0;@

Link the textbox to the cell, and apply the same number format to the
textbox.

More on number formats:

http://peltiertech.com/Excel/NumberFormats.html

- Jon
-------
Jon Peltier, Microsoft Excel MVP
Tutorials and Custom Solutions
http://PeltierTech.com
_______


"Roger B." wrote in message
. ..

I have a dollar amount created with the formula
=IF(NewProfit<0,"$"&FIXED(-NewProfit,-2),"$"&FIXED(NewProfit,-2)) in an
Excel spreadsheet which is linked to a textbox on a chart.

I would like to format the numbers in the chart 1) Bold and 2) Blue when
positive and Red when negative.



Any suggestion would be greatly appreciated,



Roger







--

Andy Pope, Microsoft MVP - Excel
http://www.andypope.info





  #6   Report Post  
Posted to microsoft.public.excel.charting
external usenet poster
 
Posts: 24
Default Formating textbox on a chart

Jon, am not sure of your conclusion. Is there any way of connecting the
Textbox to the spreadsheet with the colours showing in the Textbox?
Thanks,
Roger


"Jon Peltier" wrote in message
...
Sorry. I was thinking of textboxes, but I wasn't testing, just typing.
Otherwise I'd have noticed the lack of number formatting in a text box.
My Bad.

Jon Peltier, Microsoft Excel MVP
http://PeltierTech.com


"Andy Pope" wrote in message
...
Hi,

I think maybe Jon was think of a data label, which does have a number
format.

For textboxes I think you will need to use 2 of everything.
2 formula to display the result
positive
=IF(ROUND(NewProfit,-2)=0,ROUND(NewProfit,-2),"")

negative
=IF(ROUND(NewProfit,-2)<0,ROUND(NewProfit,-2),"")

and 2 textboxes with the correct formatting applied.

Cheers
Andy

Roger B. wrote:
Jon, thanks so much for your update. It was very helpful. There is
only one problem: I can't get the "Format Cells, Number" when working
in the TextBox. Instead I get "Format TextBox" but can't find the
numbers. Also looked at your website but couldn't find the cure.
Any suggestions would be very helpful.
Thanks,
Roger


"Jon Peltier" wrote in message
...

You can just select the textbox and select Bold.

You don't need the IF to get conditional formatting or your dollar
format. The cell just needs this formula

=ROUND(NewProfit,-2)

(FIXED results in text, not a number) and a custom number format of

[blue]$#,##0;[red]$-#,##0;$0;@

Link the textbox to the cell, and apply the same number format to the
textbox.

More on number formats:

http://peltiertech.com/Excel/NumberFormats.html

- Jon
-------
Jon Peltier, Microsoft Excel MVP
Tutorials and Custom Solutions
http://PeltierTech.com
_______


"Roger B." wrote in message
.. .

I have a dollar amount created with the formula
=IF(NewProfit<0,"$"&FIXED(-NewProfit,-2),"$"&FIXED(NewProfit,-2)) in an
Excel spreadsheet which is linked to a textbox on a chart.

I would like to format the numbers in the chart 1) Bold and 2) Blue
when positive and Red when negative.



Any suggestion would be greatly appreciated,



Roger







--

Andy Pope, Microsoft MVP - Excel
http://www.andypope.info





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
Road map with Chart Conditional Formating maxtre Charts and Charting in Excel 2 August 9th 05 08:52 AM
Activating a Chart object Hari Prasadh Charts and Charting in Excel 6 August 2nd 05 07:22 PM
Urgent Chart Assistance Brent E Charts and Charting in Excel 1 May 10th 05 09:09 AM
Urgent Chart Assistance Requested Brent E Excel Discussion (Misc queries) 0 May 9th 05 11:01 PM
manipulating textbox in chart Peter Hafner Charts and Charting in Excel 0 January 31st 05 10:55 AM


All times are GMT +1. The time now is 03:02 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"