Formulas in a cell

S

sabrol

Hi, new the the forum.... :)
I needed some help regarding formulas and text in one cell. What i'm
trying to do is develop a simple formula to calculate a simple number.
The formula i have is: =(R3*12)-((R3*12)*0.1)

But the problem (or myabe not a problem :( ) is that i need it to show
as such: $103.57;1;NO;Case Price

Is it possible to have a formula and text in the same cell, if so, how?
:confused:

Any help would be appreciated. Thanks.

Saurabh
 
C

cvolkert

The formula i have is: =(R3*12)-((R3*12)*0.1)

But the problem (or myabe not a problem ) is that i need it to show a
such: $103.57;1;NO;Case Price


I'm not 100% sure that I follow - are there any criteria that determin
what text will follow the value? If not, you can concatenate a
follows:

=(R3*12)-((R3*12)*0.1)&";1;NO;Case Price"

This should do the trick. If there are formulas to determine the 1, N
and Case Price, then you can connect them using &. The & serves as
connector - you just have to be sure that any text has " before an
after it. Let me know if you have other questions - Cha
 
P

Peo Sjoblom

One way

=TEXT((R3*12)-((R3*12)*0.1),"$#,##0.00")&";1;NO;Case Price"


You could also use a custom format like


$#,##0.00";1;NO;Case Price"

--
Regards,

Peo Sjoblom

(No private emails please)
 
Top