PC Review


Reply
Thread Tools Rate Thread

Combine text and formula

 
 
charles
Guest
Posts: n/a
 
      21st Nov 2008
I'm trying to display text and the results of a formula. In this case, the
text comes first, and the formula result after.

Want the cell to read, "ROI = 4.99", with 4.99 the result of =quotient(N41,
C37)

--
thanks,

charles
 
Reply With Quote
 
 
 
 
porter444
Guest
Posts: n/a
 
      21st Nov 2008
="ROI ="&C37

--
If my posting was helpful, please click the "Yes" button.

ROCK ON!,

Scott


"charles" wrote:

> I'm trying to display text and the results of a formula. In this case, the
> text comes first, and the formula result after.
>
> Want the cell to read, "ROI = 4.99", with 4.99 the result of =quotient(N41,
> C37)
>
> --
> thanks,
>
> charles

 
Reply With Quote
 
Charles
Guest
Posts: n/a
 
      21st Nov 2008
Actually this doesn't help. I don't need cell value, i need the result of a
formula
--
thanks,

charles


"porter444" wrote:

> ="ROI ="&C37
>
> --
> If my posting was helpful, please click the "Yes" button.
>
> ROCK ON!,
>
> Scott
>
>
> "charles" wrote:
>
> > I'm trying to display text and the results of a formula. In this case, the
> > text comes first, and the formula result after.
> >
> > Want the cell to read, "ROI = 4.99", with 4.99 the result of =quotient(N41,
> > C37)
> >
> > --
> > thanks,
> >
> > charles

 
Reply With Quote
 
Mike H
Guest
Posts: n/a
 
      21st Nov 2008
Maybe

="ROI = "&QUOTIENT(N41, C37)

Mike

"Charles" wrote:

> Actually this doesn't help. I don't need cell value, i need the result of a
> formula
> --
> thanks,
>
> charles
>
>
> "porter444" wrote:
>
> > ="ROI ="&C37
> >
> > --
> > If my posting was helpful, please click the "Yes" button.
> >
> > ROCK ON!,
> >
> > Scott
> >
> >
> > "charles" wrote:
> >
> > > I'm trying to display text and the results of a formula. In this case, the
> > > text comes first, and the formula result after.
> > >
> > > Want the cell to read, "ROI = 4.99", with 4.99 the result of =quotient(N41,
> > > C37)
> > >
> > > --
> > > thanks,
> > >
> > > charles

 
Reply With Quote
 
Mike H
Guest
Posts: n/a
 
      21st Nov 2008
Your point being?

"Pecoflyer" wrote:

>
> Mike H;117358 Wrote:
> > Maybe
> >
> > ="ROI = "&QUOTIENT(N41, C37)
> >
> > Mike
> >
> > "Charles" wrote:
> >
> > > Actually this doesn't help. I don't need cell value, i need the

> > result of a
> > > formula
> > > --
> > > thanks,
> > >
> > > charles
> > >
> > >
> > > "porter444" wrote:
> > >
> > > > ="ROI ="&C37
> > > >
> > > > --
> > > > If my posting was helpful, please click the "Yes" button.
> > > >
> > > > ROCK ON!,
> > > >
> > > > Scott
> > > >
> > > >
> > > > "charles" wrote:
> > > >
> > > > > I'm trying to display text and the results of a formula. In this

> > case, the
> > > > > text comes first, and the formula result after.
> > > > >
> > > > > Want the cell to read, "ROI = 4.99", with 4.99 the result of

> > =quotient(N41,
> > > > > C37)
> > > > >
> > > > > --
> > > > > thanks,
> > > > >
> > > > > charles

>
> Which looks a lot like my precedent post....
>
>
> --
> Pecoflyer
>
> Cheers
> ------------------------------------------------------------------------
> Pecoflyer's Profile: http://www.thecodecage.com/forumz/member.php?userid=14
> View this thread: http://www.thecodecage.com/forumz/sh...ad.php?t=32716
>
>

 
Reply With Quote
 
Charles
Guest
Posts: n/a
 
      21st Nov 2008
for some reason, the formula isn't recognizing N41/C37 as a calculation
(spoken as "value of cell N41 divided by value of cell C37"). That's why i
was trying the quotient function or "=quotient(N41,C37)". I had tried
N41/C37 and it wasn't flying.

As to the other ideas, thanks for jumping in, but none of the suggestions
tossed out by Pecoflyer or Mike have worked. Maybe they are close to
working, but i sure can't tell, lol

--
thanks,

charles


"David Biddulph" wrote:

> How can 4.99 be the result of the QUOTIENT function? Perhaps you need to
> remind yourself of that function in Excel help?
> Did you perhaps intend to say N41/C37 ?
> If you want to constrain the answer to 2 decimal places, then perhaps ="ROI
> = "&TEXT(N41/C37,2)
> --
> David Biddulph
>
> "charles" <(E-Mail Removed)> wrote in message
> news:9354BA96-167D-4C3E-8D9F-(E-Mail Removed)...
> > I'm trying to display text and the results of a formula. In this case,
> > the
> > text comes first, and the formula result after.
> >
> > Want the cell to read, "ROI = 4.99", with 4.99 the result of
> > =quotient(N41,
> > C37)
> >
> > --
> > thanks,
> >
> > charles

>
>
>

 
Reply With Quote
 
Charles
Guest
Posts: n/a
 
      21st Nov 2008
Wait, i understand what you are saying, 2 is the format of the value, meaning
this value to 2 decimal places. Excel isn't recognizing 2 as being a format
though. When i use that formula it comes back as "ROI = 2"
--
thanks,

charles


"David Biddulph" wrote:

> How can 4.99 be the result of the QUOTIENT function? Perhaps you need to
> remind yourself of that function in Excel help?
> Did you perhaps intend to say N41/C37 ?
> If you want to constrain the answer to 2 decimal places, then perhaps ="ROI
> = "&TEXT(N41/C37,2)
> --
> David Biddulph
>
> "charles" <(E-Mail Removed)> wrote in message
> news:9354BA96-167D-4C3E-8D9F-(E-Mail Removed)...
> > I'm trying to display text and the results of a formula. In this case,
> > the
> > text comes first, and the formula result after.
> >
> > Want the cell to read, "ROI = 4.99", with 4.99 the result of
> > =quotient(N41,
> > C37)
> >
> > --
> > thanks,
> >
> > charles

>
>
>

 
Reply With Quote
 
Charles
Guest
Posts: n/a
 
      21st Nov 2008
Yes!!!!!!!!
The correct way to do it:

="ROI = "&ROUND(N41/C37,2)

Have been ramming my head against the wall for hours now. Thanks so much!!!!

--
thanks,

charles


"David Biddulph" wrote:

> Yes, sorry, I was asleep and stuck between two different solutions.
> I should have said either
> ="ROI = "&TEXT(N41/C37,"#.00") or
> ="ROI = "&ROUND(N41/C37,2)
> --
> David Biddulph
>
> "Charles" <(E-Mail Removed)> wrote in message
> news:9DC70330-B111-41B0-BF23-(E-Mail Removed)...
> > Wait, i understand what you are saying, 2 is the format of the value,
> > meaning
> > this value to 2 decimal places. Excel isn't recognizing 2 as being a
> > format
> > though. When i use that formula it comes back as "ROI = 2"
> > --
> > thanks,
> >
> > charles
> >
> >
> > "David Biddulph" wrote:
> >
> >> How can 4.99 be the result of the QUOTIENT function? Perhaps you need to
> >> remind yourself of that function in Excel help?
> >> Did you perhaps intend to say N41/C37 ?
> >> If you want to constrain the answer to 2 decimal places, then perhaps
> >> ="ROI
> >> = "&TEXT(N41/C37,2)
> >> --
> >> David Biddulph
> >>
> >> "charles" <(E-Mail Removed)> wrote in message
> >> news:9354BA96-167D-4C3E-8D9F-(E-Mail Removed)...
> >> > I'm trying to display text and the results of a formula. In this case,
> >> > the
> >> > text comes first, and the formula result after.
> >> >
> >> > Want the cell to read, "ROI = 4.99", with 4.99 the result of
> >> > =quotient(N41,
> >> > C37)
> >> >
> >> > --
> >> > thanks,
> >> >
> >> > charles
> >>
> >>
> >>

>
>
>

 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
How do I combine text and formula within the same cell? Office Microsoft Excel Misc 2 26th Feb 2008 02:32 PM
Combine text and formula? Curalice Microsoft Excel Worksheet Functions 4 19th Jan 2006 11:20 AM
Combine Formula and static Text =?Utf-8?B?QmVnaW5lcg==?= Microsoft Excel Misc 2 23rd Aug 2005 06:31 AM
Formula to combine text? =?Utf-8?B?Y29hbF9taW5lcg==?= Microsoft Excel Worksheet Functions 5 18th Aug 2005 04:29 PM
Combine text and formula twaccess Microsoft Excel Discussion 10 5th Jun 2004 11:17 AM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 02:30 PM.