#1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 114
Default Custom Field label

How can I enter a formula in a cell, but but a custom text label be displayed
in the cell instead of the value of the formula?

Thanks
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 93
Default Custom Field label

Sounds like you need the IF Function such as
=if( formula, is true print this, is false print this or nothing)
something like this =if(A1100, "Large","small")

"Bryan" wrote:

How can I enter a formula in a cell, but but a custom text label be displayed
in the cell instead of the value of the formula?

Thanks

  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 114
Default Custom Field label

Not quite.
Sorry I wasn't very clear.
I'm creating this spreadsheet for class, so I'm not completely familiar with
what I'm doing (data tables), but I'll try to explain it the best I can.

I'm trying to create a data table that references the formula in the cell.
(A two variable table.) So therefore, I need the formula in that cell,
however I want it to display text instead of the value of the function.
My instructions tell me to:
"Enter a formula for net monthly income value in cell D18. Replace the
default format for cell D18 with a custom label of 'customers'"

I hope this better explains what I'm trying to accomplish, and thank you for
your help, it's greatly appreciated.

"reno" wrote:

Sounds like you need the IF Function such as
=if( formula, is true print this, is false print this or nothing)
something like this =if(A1100, "Large","small")

"Bryan" wrote:

How can I enter a formula in a cell, but but a custom text label be displayed
in the cell instead of the value of the formula?

Thanks

  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 93
Default Custom Field label

If you are trying to do calculation and then add text to the formula result,
such as formatcellcustom "Customer: " #,###
then when you do the caluculation say the result is 1947, what is displayed
in the cell is
Customer: 1,947
(but if you click on the cell you see the formula and you could continue to
manipulate it since the custom format doesn't effect anything except what is
displayed)

Hope this helps, but still a little unclear what monthly income has to do
w/customers, unless this is something like <$500, $501-600, $601-700 or
something like this.
Reno

"Bryan" wrote:

Not quite.
Sorry I wasn't very clear.
I'm creating this spreadsheet for class, so I'm not completely familiar with
what I'm doing (data tables), but I'll try to explain it the best I can.

I'm trying to create a data table that references the formula in the cell.
(A two variable table.) So therefore, I need the formula in that cell,
however I want it to display text instead of the value of the function.
My instructions tell me to:
"Enter a formula for net monthly income value in cell D18. Replace the
default format for cell D18 with a custom label of 'customers'"

I hope this better explains what I'm trying to accomplish, and thank you for
your help, it's greatly appreciated.

"reno" wrote:

Sounds like you need the IF Function such as
=if( formula, is true print this, is false print this or nothing)
something like this =if(A1100, "Large","small")

"Bryan" wrote:

How can I enter a formula in a cell, but but a custom text label be displayed
in the cell instead of the value of the formula?

Thanks

  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 114
Default Custom Field label

Its a scenario for a business adding a new service. The number of customers,
and the net monthly income of the company based on the number of customers.

But I think that is along the right lines, but I don't want to see anything
from the formula in that cell. (But on a side note, I would also be
interested in learning make the text display alongside the forumlua result.)
I'm playing with the customer cell formats (under the number column) but I
can't get it to accept text in the function at all, whether its in addition
to the formula or to replace it (unless i take out the "=" in which case it
is no longer a function). It just gives me an error telling me that there is
a problem with the formula.

The display should look something like this:
Massage Price
Customers $20 $21 $22 $23 $24
10
12 (Table values would
14 be monthly income
16 for the company)

I'm required to enter a formula in the cell that displays "customers" for
the table to reference to calculate the values at given prices.

And again, thank you for your help, I appreciate it greatly.
Bryan

"reno" wrote:

If you are trying to do calculation and then add text to the formula result,
such as formatcellcustom "Customer: " #,###
then when you do the caluculation say the result is 1947, what is displayed
in the cell is
Customer: 1,947
(but if you click on the cell you see the formula and you could continue to
manipulate it since the custom format doesn't effect anything except what is
displayed)

Hope this helps, but still a little unclear what monthly income has to do
w/customers, unless this is something like <$500, $501-600, $601-700 or
something like this.
Reno

"Bryan" wrote:

Not quite.
Sorry I wasn't very clear.
I'm creating this spreadsheet for class, so I'm not completely familiar with
what I'm doing (data tables), but I'll try to explain it the best I can.

I'm trying to create a data table that references the formula in the cell.
(A two variable table.) So therefore, I need the formula in that cell,
however I want it to display text instead of the value of the function.
My instructions tell me to:
"Enter a formula for net monthly income value in cell D18. Replace the
default format for cell D18 with a custom label of 'customers'"

I hope this better explains what I'm trying to accomplish, and thank you for
your help, it's greatly appreciated.

"reno" wrote:

Sounds like you need the IF Function such as
=if( formula, is true print this, is false print this or nothing)
something like this =if(A1100, "Large","small")

"Bryan" wrote:

How can I enter a formula in a cell, but but a custom text label be displayed
in the cell instead of the value of the formula?

Thanks



  #6   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 93
Default Custom Field label

Assuming Customers in A1 and values of ... in A2...n
The first case is $200 ($20 x 10 Customers) B2 by the formula (is the
revenue)what do you want to be displayed in B2, exactly...result of formula
or result of formula with some additional text? It seems your column heading
of Customers and your row headings of Amounts makes it pretty obvious waht
the results in the table mean.

"reno" wrote:

If you are trying to do calculation and then add text to the formula result,
such as formatcellcustom "Customer: " #,###
then when you do the caluculation say the result is 1947, what is displayed
in the cell is
Customer: 1,947
(but if you click on the cell you see the formula and you could continue to
manipulate it since the custom format doesn't effect anything except what is
displayed)

Hope this helps, but still a little unclear what monthly income has to do
w/customers, unless this is something like <$500, $501-600, $601-700 or
something like this.
Reno

"Bryan" wrote:

Not quite.
Sorry I wasn't very clear.
I'm creating this spreadsheet for class, so I'm not completely familiar with
what I'm doing (data tables), but I'll try to explain it the best I can.

I'm trying to create a data table that references the formula in the cell.
(A two variable table.) So therefore, I need the formula in that cell,
however I want it to display text instead of the value of the function.
My instructions tell me to:
"Enter a formula for net monthly income value in cell D18. Replace the
default format for cell D18 with a custom label of 'customers'"

I hope this better explains what I'm trying to accomplish, and thank you for
your help, it's greatly appreciated.

"reno" wrote:

Sounds like you need the IF Function such as
=if( formula, is true print this, is false print this or nothing)
something like this =if(A1100, "Large","small")

"Bryan" wrote:

How can I enter a formula in a cell, but but a custom text label be displayed
in the cell instead of the value of the formula?

Thanks

  #7   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 114
Default Custom Field label

I want B2 to display net monthly income based on the number of customers and
the price. Thus I need the formula in A1 (which will calculate expenses) to
reference.

But I did eventually figure it out based on your last post.
I deleted out all the numerical formating under the custom setting, and
replaced it with the word "customer" only instead of leaving the "#,###" in
the format.

Thanks for your help
Bryan



"reno" wrote:

Assuming Customers in A1 and values of ... in A2...n
The first case is $200 ($20 x 10 Customers) B2 by the formula (is the
revenue)what do you want to be displayed in B2, exactly...result of formula
or result of formula with some additional text? It seems your column heading
of Customers and your row headings of Amounts makes it pretty obvious waht
the results in the table mean.

"reno" wrote:

If you are trying to do calculation and then add text to the formula result,
such as formatcellcustom "Customer: " #,###
then when you do the caluculation say the result is 1947, what is displayed
in the cell is
Customer: 1,947
(but if you click on the cell you see the formula and you could continue to
manipulate it since the custom format doesn't effect anything except what is
displayed)

Hope this helps, but still a little unclear what monthly income has to do
w/customers, unless this is something like <$500, $501-600, $601-700 or
something like this.
Reno

"Bryan" wrote:

Not quite.
Sorry I wasn't very clear.
I'm creating this spreadsheet for class, so I'm not completely familiar with
what I'm doing (data tables), but I'll try to explain it the best I can.

I'm trying to create a data table that references the formula in the cell.
(A two variable table.) So therefore, I need the formula in that cell,
however I want it to display text instead of the value of the function.
My instructions tell me to:
"Enter a formula for net monthly income value in cell D18. Replace the
default format for cell D18 with a custom label of 'customers'"

I hope this better explains what I'm trying to accomplish, and thank you for
your help, it's greatly appreciated.

"reno" wrote:

Sounds like you need the IF Function such as
=if( formula, is true print this, is false print this or nothing)
something like this =if(A1100, "Large","small")

"Bryan" wrote:

How can I enter a formula in a cell, but but a custom text label be displayed
in the cell instead of the value of the formula?

Thanks

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
Help with a custom label? wishmyr New Users to Excel 2 July 24th 06 05:47 PM
Custom functions calculating time arguments Help Desperate Bill_De Excel Worksheet Functions 12 April 25th 06 02:22 AM
Excel 2003 list of field codes for footers? SS.Minnowski Excel Discussion (Misc queries) 4 April 21st 06 05:13 PM
How do I print comments on a chart? Tom Z. Charts and Charting in Excel 11 March 16th 06 08:44 PM
create formula. 1 field constant and another field varies by inpu. telnettech Setting up and Configuration of Excel 2 February 2nd 06 11:09 PM


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