Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Chipmatr
 
Posts: n/a
Default Excel Showing a Calculation and a Value

I would like to know if it is possible to take the value from two cells and
calculated the value and have the information displayed in the calculating
cell as both what is being calculated and the calculated value.

Example

C3 = 5
C2 = 10

C6 = C3/C2 and would show 50%, i would like it to show "(10/5) 50%"
  #2   Report Post  
Bernard Liengme
 
Posts: n/a
Default

With 3 in A1 and 12 in B1, this formula =B1&"/"&A1&" = "&B1/A1 displays
12/3 = 4
However, you will not be able to do arithmetic with the result
best wishes
--
Bernard V Liengme
www.stfx.ca/people/bliengme
remove caps from email

"Chipmatr" wrote in message
...
I would like to know if it is possible to take the value from two cells and
calculated the value and have the information displayed in the calculating
cell as both what is being calculated and the calculated value.

Example

C3 = 5
C2 = 10

C6 = C3/C2 and would show 50%, i would like it to show "(10/5) 50%"



  #3   Report Post  
Chipmatr
 
Posts: n/a
Default

Benard, thanks is there any way to make that 4 show up as a percentage?

"Bernard Liengme" wrote:

With 3 in A1 and 12 in B1, this formula =B1&"/"&A1&" = "&B1/A1 displays
12/3 = 4
However, you will not be able to do arithmetic with the result
best wishes
--
Bernard V Liengme
www.stfx.ca/people/bliengme
remove caps from email

"Chipmatr" wrote in message
...
I would like to know if it is possible to take the value from two cells and
calculated the value and have the information displayed in the calculating
cell as both what is being calculated and the calculated value.

Example

C3 = 5
C2 = 10

C6 = C3/C2 and would show 50%, i would like it to show "(10/5) 50%"




  #4   Report Post  
Barb Reinhardt
 
Posts: n/a
Default

Try this:

="("&C3&"/"&C2&") "&TEXT(C3/C2,"00%")

The result is (5/10) 50%

If you REALLY want 10/5, switch it how you want.

"Chipmatr" wrote:

I would like to know if it is possible to take the value from two cells and
calculated the value and have the information displayed in the calculating
cell as both what is being calculated and the calculated value.

Example

C3 = 5
C2 = 10

C6 = C3/C2 and would show 50%, i would like it to show "(10/5) 50%"

  #5   Report Post  
Chipmatr
 
Posts: n/a
Default

Barb,

Thanks for your help, the last part of the equation is i am trying to
conditionally format the cell so that the answer coordinates with a color, is
it possible to do this with this formula.

So far the formula is returning exactly what i want, but the conditional
format isn't working.

"Barb Reinhardt" wrote:

Try this:

="("&C3&"/"&C2&") "&TEXT(C3/C2,"00%")

The result is (5/10) 50%

If you REALLY want 10/5, switch it how you want.

"Chipmatr" wrote:

I would like to know if it is possible to take the value from two cells and
calculated the value and have the information displayed in the calculating
cell as both what is being calculated and the calculated value.

Example

C3 = 5
C2 = 10

C6 = C3/C2 and would show 50%, i would like it to show "(10/5) 50%"



  #6   Report Post  
Barb Reinhardt
 
Posts: n/a
Default

How do you want to format it?

"Chipmatr" wrote:

Barb,

Thanks for your help, the last part of the equation is i am trying to
conditionally format the cell so that the answer coordinates with a color, is
it possible to do this with this formula.

So far the formula is returning exactly what i want, but the conditional
format isn't working.

"Barb Reinhardt" wrote:

Try this:

="("&C3&"/"&C2&") "&TEXT(C3/C2,"00%")

The result is (5/10) 50%

If you REALLY want 10/5, switch it how you want.

"Chipmatr" wrote:

I would like to know if it is possible to take the value from two cells and
calculated the value and have the information displayed in the calculating
cell as both what is being calculated and the calculated value.

Example

C3 = 5
C2 = 10

C6 = C3/C2 and would show 50%, i would like it to show "(10/5) 50%"

  #7   Report Post  
Chipmatr
 
Posts: n/a
Default

for example if the outcome of the division is 1 to .75 i would like the cell
color to be green, if it is .74 to .5 yellow, and .49 and less red. i was
using the conditional format for this before, however i guess with the
formula you gave me it dosen't return a direct answer to the cell. If there
is anything you can do, i would greatly appreciate it.

Ryan

"Barb Reinhardt" wrote:

How do you want to format it?

"Chipmatr" wrote:

Barb,

Thanks for your help, the last part of the equation is i am trying to
conditionally format the cell so that the answer coordinates with a color, is
it possible to do this with this formula.

So far the formula is returning exactly what i want, but the conditional
format isn't working.

"Barb Reinhardt" wrote:

Try this:

="("&C3&"/"&C2&") "&TEXT(C3/C2,"00%")

The result is (5/10) 50%

If you REALLY want 10/5, switch it how you want.

"Chipmatr" wrote:

I would like to know if it is possible to take the value from two cells and
calculated the value and have the information displayed in the calculating
cell as both what is being calculated and the calculated value.

Example

C3 = 5
C2 = 10

C6 = C3/C2 and would show 50%, i would like it to show "(10/5) 50%"

  #8   Report Post  
Barb Reinhardt
 
Posts: n/a
Default

No it doesn't.

Try something like this for your condition.

=AND(C3/C40.75,C3/C4<1)

"Chipmatr" wrote:

for example if the outcome of the division is 1 to .75 i would like the cell
color to be green, if it is .74 to .5 yellow, and .49 and less red. i was
using the conditional format for this before, however i guess with the
formula you gave me it dosen't return a direct answer to the cell. If there
is anything you can do, i would greatly appreciate it.

Ryan

"Barb Reinhardt" wrote:

How do you want to format it?

"Chipmatr" wrote:

Barb,

Thanks for your help, the last part of the equation is i am trying to
conditionally format the cell so that the answer coordinates with a color, is
it possible to do this with this formula.

So far the formula is returning exactly what i want, but the conditional
format isn't working.

"Barb Reinhardt" wrote:

Try this:

="("&C3&"/"&C2&") "&TEXT(C3/C2,"00%")

The result is (5/10) 50%

If you REALLY want 10/5, switch it how you want.

"Chipmatr" wrote:

I would like to know if it is possible to take the value from two cells and
calculated the value and have the information displayed in the calculating
cell as both what is being calculated and the calculated value.

Example

C3 = 5
C2 = 10

C6 = C3/C2 and would show 50%, i would like it to show "(10/5) 50%"

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
Calculation Setting in Excel Stuart Bisset Excel Discussion (Misc queries) 0 June 17th 05 09:54 AM
How do I set the order of calculation of Data Tables in Excel? Charles Easton Excel Worksheet Functions 1 April 30th 05 10:35 PM
Excel Calculation Error for formula to sum longer Excel Discussion (Misc queries) 3 April 29th 05 03:40 PM
calculating excel spreadsheet files for pensions and life insurance (including age calculation sheets) RICHARD Excel Worksheet Functions 1 March 15th 05 05:49 PM
Amortization Calculation in Excel worksheet Tiff Excel Worksheet Functions 4 January 29th 05 04:18 AM


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