A Microsoft Office (Excel, Word) forum. OfficeFrustration

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » OfficeFrustration forum » Microsoft Excel » Worksheet Functions
Site Map Home Register Authors List Search Today's Posts Mark Forums Read  

Percntages



 
 
Thread Tools Display Modes
  #1  
Old April 14th, 2009, 07:10 PM posted to microsoft.public.excel.worksheet.functions
Adam
external usenet poster
 
Posts: 545
Default Percntages

Hey guys, i want to know if there is a way to do something like this

I have a columns of numbers, and i want to display a percentage behind the
value in the same cell
like this..

45 (40%)
45 (48%)

Is there a code ic an put behind the value that will display the percentage?

Thanks,

-adam
  #2  
Old April 14th, 2009, 07:16 PM posted to microsoft.public.excel.worksheet.functions
Sheeloo[_5_]
external usenet poster
 
Posts: 239
Default Percntages

Not in the same cell
If you have the no in A1 and percentage in B then you can have
=A1 & "(" & B1 & ")"
in C1
--
Pl click the YES button
(if you see it - don''''''''t worry if you don''t),
if this answer was helpful.



"Adam" wrote:

Hey guys, i want to know if there is a way to do something like this

I have a columns of numbers, and i want to display a percentage behind the
value in the same cell
like this..

45 (40%)
45 (48%)

Is there a code ic an put behind the value that will display the percentage?

Thanks,

-adam

  #3  
Old April 14th, 2009, 07:16 PM posted to microsoft.public.excel.worksheet.functions
Luke M
external usenet poster
 
Posts: 2,672
Default Percntages

Probably. But a percentage of what? What is it based on?

You can concatenate multiple functions together like so:

=FunctionOne&" ("&PercentageFunction&")"

The downside is that this is now a text value, so can not be used in further
calculations. (unless you convert it back using some method)
--
Best Regards,

Luke M
*Remember to click "yes" if this post helped you!*


"Adam" wrote:

Hey guys, i want to know if there is a way to do something like this

I have a columns of numbers, and i want to display a percentage behind the
value in the same cell
like this..

45 (40%)
45 (48%)

Is there a code ic an put behind the value that will display the percentage?

Thanks,

-adam

  #4  
Old April 14th, 2009, 07:21 PM posted to microsoft.public.excel.worksheet.functions
Mike H
external usenet poster
 
Posts: 8,419
Default Percntages

Hi,

It would have helped to know how your numbers are derived but this may get
you going along the right lines. Put 100 in A1 and then this formula in a cell

=A1*0.45&" ("& TEXT(A1/100*0.45,"0.00%")&" )"

Mike

"Adam" wrote:

Hey guys, i want to know if there is a way to do something like this

I have a columns of numbers, and i want to display a percentage behind the
value in the same cell
like this..

45 (40%)
45 (48%)

Is there a code ic an put behind the value that will display the percentage?

Thanks,

-adam

  #5  
Old April 14th, 2009, 07:43 PM posted to microsoft.public.excel.worksheet.functions
Adam
external usenet poster
 
Posts: 545
Default Percntages


Let me make this more clear, sorry.

there are a total of 100 sqaures and circles

Circles 56 (56%)
Squares 54 (54%)

can i write a code behind the value, that will basically display 56/100, or
54/100 as a percentage?

thanks


"Mike H" wrote:

Hi,

It would have helped to know how your numbers are derived but this may get
you going along the right lines. Put 100 in A1 and then this formula in a cell

=A1*0.45&" ("& TEXT(A1/100*0.45,"0.00%")&" )"

Mike

"Adam" wrote:

Hey guys, i want to know if there is a way to do something like this

I have a columns of numbers, and i want to display a percentage behind the
value in the same cell
like this..

45 (40%)
45 (48%)

Is there a code ic an put behind the value that will display the percentage?

Thanks,

-adam

  #6  
Old April 14th, 2009, 07:46 PM posted to microsoft.public.excel.worksheet.functions
Francis[_3_]
external usenet poster
 
Posts: 69
Default Percntages

Hi

How about formatting the cells as percentage?
Right click on the target cells
Select Format Cells
Choose Percentage under Category in Number tab
Scroll down to 0 using the arrow down in Decimal

You can still do calculation using this and the results in the select cells
will be generated as percentage automatically

--
Hope this is helpful

Pls click the Yes button below if this post provide answer you have asked

Thank You

cheers, francis

Am not a greek but an ordinary user trying to assist another



"Adam" wrote:

Hey guys, i want to know if there is a way to do something like this

I have a columns of numbers, and i want to display a percentage behind the
value in the same cell
like this..

45 (40%)
45 (48%)

Is there a code ic an put behind the value that will display the percentage?

Thanks,

-adam

  #7  
Old April 14th, 2009, 08:15 PM posted to microsoft.public.excel.worksheet.functions
Adam
external usenet poster
 
Posts: 545
Default Percntages

I still need the actual number displayed also like this 56 (56%)

"Francis" wrote:

Hi

How about formatting the cells as percentage?
Right click on the target cells
Select Format Cells
Choose Percentage under Category in Number tab
Scroll down to 0 using the arrow down in Decimal

You can still do calculation using this and the results in the select cells
will be generated as percentage automatically

--
Hope this is helpful

Pls click the Yes button below if this post provide answer you have asked

Thank You

cheers, francis

Am not a greek but an ordinary user trying to assist another



"Adam" wrote:

Hey guys, i want to know if there is a way to do something like this

I have a columns of numbers, and i want to display a percentage behind the
value in the same cell
like this..

45 (40%)
45 (48%)

Is there a code ic an put behind the value that will display the percentage?

Thanks,

-adam

  #8  
Old April 14th, 2009, 08:31 PM posted to microsoft.public.excel.worksheet.functions
Francis[_3_]
external usenet poster
 
Posts: 69
Default Percntages

I suggest that you put an equal sign, = , in the cells where you need
percentage and format as I have mentioned earlier.

This way, you will have original numbers display without % and another with %
If you need them to be in the same cell, then try
=B2&" "&"("&B2&"%"&")" which will give you 56 (56%).
copy, paste special, value to the cells location and delete the cells with
formula
but take note that this is a text and can't be use for calculation.
--
Hope this is helpful

Pls click the Yes button below if this post provide answer you have asked

Thank You

cheers, francis

Am not a greek but an ordinary user trying to assist another



"Adam" wrote:

I still need the actual number displayed also like this 56 (56%)

"Francis" wrote:

Hi

How about formatting the cells as percentage?
Right click on the target cells
Select Format Cells
Choose Percentage under Category in Number tab
Scroll down to 0 using the arrow down in Decimal

You can still do calculation using this and the results in the select cells
will be generated as percentage automatically

--
Hope this is helpful

Pls click the Yes button below if this post provide answer you have asked

Thank You

cheers, francis

Am not a greek but an ordinary user trying to assist another



"Adam" wrote:

Hey guys, i want to know if there is a way to do something like this

I have a columns of numbers, and i want to display a percentage behind the
value in the same cell
like this..

45 (40%)
45 (48%)

Is there a code ic an put behind the value that will display the percentage?

Thanks,

-adam

  #9  
Old April 14th, 2009, 10:09 PM posted to microsoft.public.excel.worksheet.functions
Teethless mama
external usenet poster
 
Posts: 3,722
Default Percntages

Try this:

In B1: =A1&TEXT(A1/100," (0%)")


"Adam" wrote:

I still need the actual number displayed also like this 56 (56%)

"Francis" wrote:

Hi

How about formatting the cells as percentage?
Right click on the target cells
Select Format Cells
Choose Percentage under Category in Number tab
Scroll down to 0 using the arrow down in Decimal

You can still do calculation using this and the results in the select cells
will be generated as percentage automatically

--
Hope this is helpful

Pls click the Yes button below if this post provide answer you have asked

Thank You

cheers, francis

Am not a greek but an ordinary user trying to assist another



"Adam" wrote:

Hey guys, i want to know if there is a way to do something like this

I have a columns of numbers, and i want to display a percentage behind the
value in the same cell
like this..

45 (40%)
45 (48%)

Is there a code ic an put behind the value that will display the percentage?

Thanks,

-adam

  #10  
Old April 14th, 2009, 11:38 PM posted to microsoft.public.excel.worksheet.functions
Gord Dibben
external usenet poster
 
Posts: 20,252
Default Percntages

Still doesn't give OP what he asked for in the sample shown originally.

45 (40%)
45 (48%)


45 is 40% of 113 or 48% of 94

I would suggest a formula in B1 like =A1&TEXT(A1/C1," (0%)")

Where C1 is a number like 113 or 94


Gord Dibben MS Excel MVP

On Tue, 14 Apr 2009 14:09:01 -0700, Teethless mama
wrote:

Try this:

In B1: =A1&TEXT(A1/100," (0%)")


"Adam" wrote:

I still need the actual number displayed also like this 56 (56%)

"Francis" wrote:

Hi

How about formatting the cells as percentage?
Right click on the target cells
Select Format Cells
Choose Percentage under Category in Number tab
Scroll down to 0 using the arrow down in Decimal

You can still do calculation using this and the results in the select cells
will be generated as percentage automatically

--
Hope this is helpful

Pls click the Yes button below if this post provide answer you have asked

Thank You

cheers, francis

Am not a greek but an ordinary user trying to assist another



"Adam" wrote:

Hey guys, i want to know if there is a way to do something like this

I have a columns of numbers, and i want to display a percentage behind the
value in the same cell
like this..

45 (40%)
45 (48%)

Is there a code ic an put behind the value that will display the percentage?

Thanks,

-adam


 




Thread Tools
Display Modes

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

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Forum Jump


All times are GMT +1. The time now is 08:56 PM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 OfficeFrustration.
The comments are property of their posters.