+ Reply to Thread
Results 1 to 7 of 7

Text funtion, but display as %?

  1. #1
    Registered User
    Join Date
    08-08-2010
    Location
    Ottawa, Canada
    MS-Off Ver
    Excel 2010
    Posts
    85

    Text funtion, but display as %?

    Hi I am trying to create a statement in excel that will combine text and references to numbers, however the numbers need to be displayed as a %.

    I am trying to use the Text function : TEXT(value, format_text) but instead of the options showing, I want to show it as % .... not possible?

    My % is in cell D33 (and is a reference from somewhere else) and is formatted as %.

    My text in cell A1 to show will look like this:

    =IF(Language="ENG","ABC level is "&D33&" of annual premium","Provisionné ABC "&D33&" des primes annuelles")

    However, the current result is :

    ABC level is 0.1 of annual premium

    I want it to look like this:

    ABC level is 10% of annual premium

    any tricks?
    Last edited by trillium; 02-27-2012 at 10:48 AM.

  2. #2
    Forum Guru
    Join Date
    03-12-2010
    Location
    Canada
    MS-Off Ver
    2010 and 2013
    Posts
    4,418

    Re: Text funtion, but display as %?

    This should do the trick:

    Please Login or Register  to view this content.
    Please consider:

    Thanking those who helped you. Click the star icon in the lower left part of the contributor's post and add Reputation.
    Cleaning up when you're done. Mark your thread [SOLVED] if you received your answer.

  3. #3
    Registered User
    Join Date
    11-23-2011
    Location
    VietNam
    MS-Off Ver
    Excel 2003
    Posts
    24

    Re: Text funtion, but display as %?

    Try
    =IF(Language="ENG","ABC level is "&D33&" of annual premium","Provisionné ABC "& TEXT(D33,"#%")&" des primes annuelles")

  4. #4
    Forum Moderator vlady's Avatar
    Join Date
    09-22-2011
    Location
    Philippines - OLSHCO -Guimba-Nueva Ecija
    MS-Off Ver
    2021
    Posts
    4,366

    Re: Text funtion, but display as %?

    @ nmhung49

    how about 0% ?

    I'll go with abousetta ..
    =TEXT((D33* 100),"0")&"%"
    displays 0% if zero..
    I think people forget the word "THANK YOU!!!!" Do you still know it???

    There is a little star ( ADD REPUTATION ) below those person who helped you. Click it to say your "PRIVATE APPRECIATION TO THEIR EFFORT ON THEIR CONTRIBUTIONS "

    Regards,
    Vladimir

  5. #5
    Registered User
    Join Date
    11-23-2011
    Location
    VietNam
    MS-Off Ver
    Excel 2003
    Posts
    24

    Re: Text funtion, but display as %?

    @vlady
    How about 0%, it is easy, I have not tested the case of cells value = 0
    Try
    =IF(Language="ENG","ABC level is "&D33&" of annual premium","Provisionné ABC "& TEXT(D33,"#0%")&" des primes annuelles")

  6. #6
    Forum Moderator vlady's Avatar
    Join Date
    09-22-2011
    Location
    Philippines - OLSHCO -Guimba-Nueva Ecija
    MS-Off Ver
    2021
    Posts
    4,366

    Re: Text funtion, but display as %?

    nice ..

    now i like your's.

  7. #7
    Registered User
    Join Date
    08-08-2010
    Location
    Ottawa, Canada
    MS-Off Ver
    Excel 2010
    Posts
    85

    SOLVED: Re: Text funtion, but display as %?

    Thanks everyone for your suggestions!!

    Abousetta, worked like a charm! I had tried to multiply but was doing it in function part, not the first part like you did, and didn't think to just add the % at the end like that! Beautiful! cheers!

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1