Display numbers as percentages

I'm using crystal reports developer version 11.0.0.2495.
I have a report that has 40 number fields that are currently displayed as decimals. Ex: .79
I need these fields to display as percentages. Ex: 79%
I've done this before using a formula something like
[field]*100 & "%"
or something like that, but because i have 40 fields, I don't have the time to create 40 independent formula fields to replace the current number fields.
any suggestions?

Thanks anyway to everyone, i figured it out:
In the Format Editor Common tab under "Display String" I put this formula and it fixed my issue:
if currentfieldvalue <=1 then
totext(currentfieldvalue*100,0) &"%"

Similar Messages

  • How to display numbers in triangle format

    Hi All,
    How do I display numbers in the following format;
    1
    1 2
    1 2 3
    1 2 3 4
    Your help will be more appreciated.
    Thank you.

    I couldn't resist:
    SQL> var N number
    SQL> exec :n := 10;
    PL/SQL procedure successfully completed.
    SQL> -- plane
    SQL> select * from (
      2  select lpad(' '||(case when level between :N/2 - (:N * 0.1) and :N/2 + (:N * 0.1)
      3                 then lpad('*',:N*2.5 - level - abs(:N/2-level),'*')
      4      end) --"left wing"
      5      ,50-level, ' ')
      6    || ltrim(sys_connect_by_path(level,' '))
      7    || (case when level between :N/2 - (:N * 0.1) and :N/2 + (:N * 0.1)
      8              then rpad('*',:N*2.5 - level - abs(:N/2-level),'*')
      9      end) -- "right wing"
    10    n
    11  from dual 
    12  connect by level <= :N
    13  order by level);
                                                     1
                                                    1 2
                                                   1 2 3
                              ********************1 2 3 4********************
                             ********************1 2 3 4 5********************
                              ******************1 2 3 4 5 6******************
                                               1 2 3 4 5 6 7
                                              1 2 3 4 5 6 7 8
                                             1 2 3 4 5 6 7 8 9
                                            1 2 3 4 5 6 7 8 9 10
    10 rows selected.
    SQL> exec :n := 6;
    PL/SQL procedure successfully completed.
    SQL> r
      1  select * from (
      2  select lpad(' '||(case when level between :N/2 - (:N * 0.1) and :N/2 + (:N * 0.1)
      3                 then lpad('*',:N*2.5 - level - abs(:N/2-level),'*')
      4      end) --"left wing"
      5      ,50-level, ' ')
      6    || ltrim(sys_connect_by_path(level,' '))
      7    || (case when level between :N/2 - (:N * 0.1) and :N/2 + (:N * 0.1)
      8              then rpad('*',:N*2.5 - level - abs(:N/2-level),'*')
      9      end) -- "right wing"
    10    n
    11  from dual
    12  connect by level <= :N
    13* order by level)
                                                     1
                                                    1 2
                                       ************1 2 3************
                                                  1 2 3 4
                                                 1 2 3 4 5
                                                1 2 3 4 5 6
    6 rows selected.
    SQL>

  • SAP ERP 6.0 - Problems displaying numbers in ALV (i.e tx. se16n)

    Hi, We've just upgraded our system from version 46C to version 6.0.
    As the result of the process we're experiecing a problem when displaying numbers with ALV reports, even with standard transactions.
    For example, when running the transaction se16n to display the content of the table CABN table, the value of the ATINN field (NUMC) is replaced by the value of other field ATNAM (CHAR 30).
    This situation doesn't happen when consulting data in se16 transaction (here we display the result in se16 standard list).
    We also experienced this problem in Z programs showing data in ALV reports..
    Any help on this would be appreciated.!!!
    Thank you

    ORA-00959: tablespace 'PSAPSR3ODS' does not exist
    Create the tablespace PSAPSR3ODS through brtools, or sql commands.
    Update the import_state.properties where you replace the "-" with "0" for the packages that you want to retry.
    Then set the JAVA_HOME environment, and  then run the import_monitor.sh.

  • My phone displays numbers instead of contact names for incoming calls and text - how do I fix?

    My phone displays numbers instead of contact names for incoming calls and text - how do I fix?  It used to display the names if there was a contact listed, now it just shows numbers regardless of whether or not the number corresponds to a contact name in the contact list.  Can anyone help?  I googled this problem and lots of folks have experienced it, however there is not a consensus for a resolution.

    Alexandribill, I have been having the exact same issue.  I got a new phone and restored my contacts.  If the # doesn't have the area code first then the name isn't shown.  I just added my husbands area code to my phone and called my phone from his and now his name shows up...Ugh, I have to go through and manually add the area code to all my contacts....
    I'd say Verizon needs to rewrite their program to include the area code in the restoring from backup process!

  • Why is Mavericks Calendar not displaying numbers correctly?

    My Calendar application is not displaying numbers correctly, I have tried validating my fonts and found nothing there, so not sure what the problem is...

    Have yopu gone to Font Book
    Font Book is located in the Applications folder (in the Finder, choose Go > Applications). To manage or view fonts, open Font Book, or double-click a font file.
    High Light all the fonts    ( Shift and click 1st one  Shift and click last one) and
    then select File/Falidate Fonts
    Then making sure all the fonts get a green tick box.

  • Display numbers formatted with leading zeros or spaces.

    There are some cases where you might need to display numbers with leading zeros or leading spaces, or trailing zeros.  I experimented with several methods and came up with some examples.  This is a Console application, but the results can just
    as well be output to a listbox in a Windows form.
    Sub Main()
    Dim snum As String, inum As Integer = 56
    snum = inum.ToString()
    Console.WriteLine(snum & vbTab & " ToString()")
    snum = inum.ToString("D4") 'adds leading zeros
    Console.WriteLine(snum & vbTab & " ToString(""D4"")")
    snum = inum.ToString("F4") '4 decimal places with trailing zeros
    Console.WriteLine(snum & vbTab & " ToString(""F4"")")
    Console.WriteLine()
    snum = String.Format("{0,4}", inum) 'leading spaces
    Console.WriteLine(snum & vbTab & " Format{0,4}")
    snum = String.Format("{0:D4}", inum) 'leading zeros
    Console.WriteLine(snum & vbTab & " Format{0:D4}")
    snum = String.Format("{0:F4}", inum) '4 decimal places with trailing zeros
    Console.WriteLine(snum & vbTab & " Format{0:F4}")
    Console.WriteLine()
    snum = inum.ToString().PadLeft(4, "0"c) 'leading zeros
    Console.WriteLine(snum & vbTab & " PadLeft(4, ""0""c)")
    snum = inum.ToString().PadLeft(4, " "c) 'leading spaces
    Console.WriteLine(snum & vbTab & " PadLeft(4, "" ""c)")
    Console.ReadLine() Console.Clear()
            For x As Integer = 1 To 20
                snum = x.ToString("D4")
                Console.WriteLine(snum)
            Next x
            Console.ReadLine()
    End Sub
    Solitaire

    I would add that many of these methods also work with numeric types that are not integers.
    Note that the "D4" format string doesn't work for non-integral types (such as Double and Decimal), and the "F4" format string doesn't pad with trailing zeros, it rounds to 4 decimal places (which can lose information). PadLeft works with
    the entire string, it isn't aware of the decimal point.

  • Displaying numbers not names in messages

    My iPhone 5 is displaying numbers when I get messages not names
    Any ideas?
    TIA

    if your carrier is Verizon take a look at this link http://discussions.apple.com/thread/3752984?tstart=30

  • Difference between two numbers in percentage.

    Hi,
    How to find difference between 2 numbers in percentage.
    Is there any standard function module.
    For example. I m having two numbers.
    25 & 31. I want to find how many percentage 25 is different from 31.
    Thanks in advance.

    hi,
    manual coding would be like this,
    data: no1 type i,
            no2 type i,
            no1per type d,
            no2per type d,
            diff type d.
    no1per = no1 / 100.
    no2per = no2 / 100.
    if no1per >= no2per
    diff = no1per  - no2per.
    write:/10 '% diff of',no1,'and',no2,' is',diff.
    else.
    diff = no2per  - no1per.
    write:/10 '% diff of',no2,'and',no1,' is',diff.
    if helpful reward some points.
    with regards,
    Suresh Aluri.

  • Datagrid doesn't display numbers with more than 19 digits

    With patch 1 the SQL Developer datagrid should display numbers with more than 10 digits. But the limit seems to be 19 digits now. Number20 and Number21 fields are not displayed on my machine.
    WinXP Prof. 2002 SP2
    SQL Developer 1.0.0.14.67
    Personal Oracle Database 10g Release 10.2.0.2.0 - Production with options Partitioning, Spatial and OLAP

    I saw this as well and am working on fixing it.
    -kris

  • Table Sorter for String displaying Numbers

    Hi All.
    I have a table whose one of the columns display numbers with data type string. This is becuase :
    1. RFC gives me as String.
    2. I have to display blank in case no value or zero is present (since int, long etc default to Zero, hence  
        not used).
    I have to sort this column as a number.Since the datatype is string, it sorts the numbers as string
    for example : if we have  values like : 2, 4, 3, 10, 19, 15, 20, 22
    currently as String it sorts as follows : 10, 15, 19, 2, 20, 22, 3, 4.
    but i want as follows : 2, 3, 4, 10, 15, 19, 20, 22.
    Useful answers will appreciated.
    Thanks and regards,
    Aditya Deshpande.

    In order to sort the node with attribute of type string; please use the following code..
    Here use the node where you store the string value..
    wdContext.nodeTest().sortElements(
                new Comparator() {
                   public int compare(Object o1, Object o2) {
                        // TODO Auto-generated method stub
                   IPrivateExperimentView.ITestElement ele1 = (IPrivateExperimentView.ITestElement)o1;
                   IPrivateExperimentView.ITestElement ele2 = (IPrivateExperimentView.ITestElement)o2;
                        return Integer.parseInt( ele1.getNumStr()) > Integer.parseInt( ele2.getNumStr()) ? 1 : -1;
    input :  "2", "4", "3", "10", "19", "15", "20", "22"
    result : "2", "3", "4", "10", "15", "19", "20", "22"
    vinod

  • Why does Adobe Reader XI set my keyboard to display NUMBERS ONLY when I open a .pdf file?

    I need to keep re-booting my laptop to resolve above bug. Ideas please?

    ONE MONTH AND NO REPLY - WHO  CAN ADDRESS THIS BUG????
    WHEN I OPEN A .pdf document using ADOBE READER 11.0.2  BEHAVIOR is described BELOW. I CANNOT BE MORE COGENT.
    It occurs both within Adobe Reader functions, such as page printing options, and in all APPLICATIONS (Gmail, Word, etc) once I close .pdf document.
    SOLUTION: I MUST POWER DOWN/UP EACH TIME I USE ADOBE READER. THIS IS IDIOCY.
    1. Keyboard appears RESET to display numbers ONLY, and numbers displayed to DO NOT CORRESPOND to numbers I TYPE.
    AFTER ADOBE READER IS CLOSED I type "A" into say, an email address field and a random number, say, "9" appears in the field not an "A".
    WHILE IN ADOBE READER  I type "23" into the .pdf "go to page" field, and get other numbers completely.
    Happens ONLY when I open a .pdf file with Adobe Reader 11.0.2 (XI).
    Both behaviors occur whether I open a download .pdf file or attempt to open a .pdf via search engine Google + my Browsers.
    2. Operating System = Windows 7.
    3. My Browser = Internet Explorer 9 or Mozilla Foxfire; behavior is identical on either. Search engine used is Google.
    Weird, but true, and tiresome. I've had it..
    Message was edited by: SueB17 3/19/2013
    Message was edited by: SueB17

  • How to use custom label formats to display currency and percentage

    Hi There,
    I need a pie chart to display both currency and percentage. I have the cell format editor open for custom cell formats (from the pie chart label format menu) but am not sure how to write the expression.
    I've tried something like this but get an error:
    $ #,###  -  % #,###
    How can I display both currency and percentage for the same label?
    Any pointers in the right direction would be much appreciated.
    Cheers
    Ben

    labels built into Keynote can be displayed as percentage or value, not both
    The choice is made in:   Inspector > chart > series > data point settings
    the work around is to manually add text boxes with the currancy value entered in each box, as in $2.00

  • Lync 2013 Client Not Display Numbers in Contact Card

    Hi
    I have a problem where Lync 2013 client connecting to Lync 2010 backend appears not download the contact list completely. Lync 2010 clients are all operating normally.  On Lync 2010 client, you can view all contact details including Enterprise Voice
    numbers and cell numbers for all users. However on Lync 2013 clients, Lync contact details for some users do not populate completely. In most cases, Enterprise numbers/Work Numbers/Mobile Numbers are missing.  If the contact is pinned then the details
    are retrieved.
    In cases where Work/Voice/Cell numbers are not displayed, affected users is limited to making lync to lync  calls only. The user can still dial the number  and get through without any issues.
    I have deleted and contacts cache on Lync 2013 but this has not helped.
    Regards

    Hi,
    How about check the contact of “Outlook Test” user from the Lync 2010 client?
    According to the second screenshot, since it’s an external account, the information will be limited.
    Thanks,
    Simon Wu
    TechNet Community Support

  • Issue in displaying numbers in Excel

    Hi,
    I am converting my report output to XLS format using the CL_BCS class. I am converting my string into binary content and adding it as a xls attachement.
          cl_bcs_convert=>string_to_solix(
            EXPORTING
              iv_string   = lv_string
              iv_codepage = '4103'
              iv_add_bom  = 'X'
            IMPORTING
              et_solix  = binary_content
              ev_size   = size ).
    *add attachment
    document->add_attachment(
            i_attachment_type    = 'xls'                    
            i_attachment_subject = 'Output'                   
            i_attachment_size    = size
            i_att_content_hex    = binary_content ).
    I am able to email the generated excel file but if my column hold numbers with more digtis (ie, 1234567891234 , displayed as 1.23457E+12), its getting displayed as exponent format.
    pl guide me on handling this im my program itself.
    Regards,
    BG

    Hi
    I tried using your example and also added some more digits to it and I realised the error works this way - if it is a 13 digit number 1234567891234
    The error will be 1.23457E+12 and similarly anything bigger like say 15 digit will have 14 after the plus.
    I changed the formatting to number and it worked. So  I believe this can be reported as a bug in Excel.
    Rgds

  • How do I split display Numbers?

    I have been given the task of finding the sum, quotient and remainder of two input integers. Not that much of a problem.
    But the problem now is, I am supposed to display the digits entered with the numbers being separated by two spaces.
    In example, if the number is 5678
    the display should be
    5 6 7 8
    How?
    Thank you..

    import javax.swing.*;
    class Question1 {
         public static void main (String args[]){
              Question1 theObject = new Question1();
              String strA = "";
              String strB = "";
              int a = 0;
              int b = 0;
              int qoutient = 0;
              int remainder = 0;
              for ( ; ;)
              strA = JOptionPane.showInputDialog("Please enter 1st integer : ");
              a = Integer.parseInt(strA);
              if (a==0)
              break;
              strB = JOptionPane.showInputDialog("Please enter 2nd Integer : ");
              b = Integer.parseInt(strB);
              if (b==0)
              break;
              qoutient = a / b;
              remainder = a % b;
              int displayA = displayDigits(a);
              int displayQoutient = displayDigits(qoutient);
              int displayB = displayDigits(b);
              int displayRemainder = displayDigits(remainder);
              JOptionPane.showMessageDialog(null, "The Digit a is "+ displayA + "\nThe Digit B is " + displayB
                   +"\nThe quotient is " + displayQoutient + "\nThe Remainder is " + displayRemainder,
                   "Digits Displayed", JOptionPane.INFORMATION_MESSAGE);
         }//end main method
         public static int displayDigits(int number){
              int placeValue = number % 10;
            number = number / 10;
            int reverseNumber = 0;
            reverseNumber = reverseNumber * 10 + placeValue;
            return reverseNumber;
    }That was how far I Got, but I am reversing numbers instead.
    How do I use the charAt method which you recommended?

Maybe you are looking for

  • I have windows 8 and need to install itunes (without internet)

    I've got the set up.exe file through another computer (latest version downloaded) and have put on desktop of windows 8, but when i go to use the set up it say  "this app can't run on your PC" find a version for your PC, check with the software publis

  • Error while starting soa_server

    HI , I am getting the following error while starting soa server . Please help me how this can be resolved. JNDI lookup of server command endpoint OraSDPM/ejb/sdpmessagingserver/CommandProcessorRemote failed with the following error message: While try

  • Strange Playlist appeared with newest version of iTunes

    I just updated to the new version of iTunes. And now I have a blue playlist named "J's Limewire Tunes". has anyone else experienced this, and do you think that someone has "hacked" iTunes on my computer. I tried deleted the playlist, but that has not

  • Script error "object expected"

    Hello, I have tried everything I could find on the internet and I still get script error message "object expected" "code 0" in the script http://127.0.0.1:1133/app/_js/adobe.js during installation. After that the installation just hangs and there is

  • Ipod not showing in itunes or computer

    What can I do to get my ipod shuffle to be recognized...Re-installing works when I first do it and then when I go into my library to check off some songs and back to look for my ipod--it is gone again!!