CFCHART, y axis in whole numbers?

I have a report I print tracking the number of events in different categories.  Events are single items and never parts of items.
The charts I am generating have the y axis divided in all different ways.
Is there a way to force the y axis to be whole numbers?  I'm using CF9.
Thanks
Examples

I can't duplicate your problem, with or without headers. If I chose a line chart, it will do what you are describing (each column becomes a line on the chart) but if I choose a scatter chart it works fine for me. Are you sure you are choosing the right chart type? The scatter chart icon looks like a shotgun blast.

Similar Messages

  • Force Y-Axis scale to be whole numbers

    Does anyone know how to force the y-axis scale of a bar chart to be use whole numbers when you are doing automatic ranging?  I am using a bar chart to show counts by categories.  I know you can do this if the range is static, but I don't know for sure what the maximum counts are going to be, so I need automatic ranging.  When we have values of say 10 or more for each category, the chart looks reasonable, but if we only have a values of 2 or 3 for the categories, the chart y-axis might have a scale of .4, .8, 1.2, 1.6 etc.  This looks goofy when we are graphing counts, which can only be whole numbers.  Can I force automatic ranging to use integers?  I am using Crystal 2008.
    Thanks for any help you can give me.

    If all else fails, this is a feature in our CRChart add-on library for Crystal Reports.
    Macro @SCALE_INTERVAL would do exactly what you want. It's a new feature in the soon-to-be-released version 3.6 however, so you'll need to contact us directly to get an advance copy of the 30day free demo of 3.6  (3.52 is version on our website).
    -Dan
    DISCLAIMER: I work for the company, threedgraphics.com, that makes this product. This product costs money.

  • How do I set a form field to accept whole numbers only?

    I am using Acrobat X.
    I have a number of fields in a form that are used in a variety of calculations. It is the nature of these fields that they need to contain whole numbers only, no decimals.
    On the "Format" tab, I have set the field format to "Number" and the number of decimal places to "0"
    On the "Validate" Tab I have set the "Field Value is in Range" "From 0", "To 999"
    This is to ensure that the field can only contain a maximum of a three digit number.
    But this still allows the user to enter decimal places. This messes up my calculations so I want to limit the user's input to whole numbers.
    How do I do that?
    Thanks!
    Steve

    I apologize for being dense but I really do not know how to apply your solution. Taking the path you suggested there is nothing under Tools>Document Processing relating to Java scripts.
    I presume that I have to save this part somewhere in Acrobat:
    // Document-level function
    function triDigKS() {
        // Get all that is currently in the field
        var val = AFMergeChange(event);
        // Reject entry if anythig but digits
        event.rc = AFExactMatch(/\d{0,3}/, val);
    And then use the call out:
    // Custom Keystroke script
    triDigKS();
    Somewhere else but I don't know where thos two places are. Do I use the callout in the validation tab, or somewhere else?
    Thanks
    Steve

  • Planning function: distribution with keys and whole numbered results

    Hello,
    using the planning function type "distribution" with keys yearly values shall be distributed to monthly values. However, the resulting values shall be whole-numbered - e.g. the planned sales of 10 machines per year shall be distributed to monthly values.   The result shall not be 12 times 0.833 but 10 times one and two times 0. Is there a "smart" way to do this?
    Presently I can think only of an approach using a fox formula where the result values are calculated using functions like "trunc" and "frac".
    Kind regards, Kora

    Once you get the distribution resuklts, apply FOX to trim the decimals and put both the functions in a sequence.
    Ravi Thothadri

  • IDCS6 - How do I create tables with large whole numbers and small fractions?

    I have a lot of engineering data, dimensions, etc, to enter into an existing IDCS6 Table. I need whole numbers to display full size, but fractions to be small size. I know I can use Open Type and select the Fractions option for each individual fraction, but that would take forever and give me a roaring headache.
    How do I create a style (or whatever) that will allow me to just type in the numbers and have them automatically apply small formatting to the fraction portion of the number whenever it sees a "/"?
    Along a similar line, I was trying to copy table data from a PDF document from Acrobat X Pro and paste that into an IDCS6 table, so each cell is populated by the appropriate cell data from the PDF file, but didn't have any success. That would really save me a lot of time, because I have many complete tables in PDF format. The data is not protected in the PDF, but I'm having a hard time figuring out how to bring it over to IDCS6.
    On a Mac, OSX 10.8.5.
    Thanks,
    Lou

    There are a number of ways to do it, but I make fractions using Dan Rodney's excellent (and free) Proper Fraction script. After it's installed; assign it a keyboard shortcut. Then type your numerator/denominator, select it, and invoke the script. With just a couple keystrokes, you've got a perfectly formatted fraction.
    As for the PDF tables, I'd try exporting the host file to RTF and copy/pasting from there. In case you're unaware, to paste values into InDesign table cells, the number of (pre-existing), cells/rows/columns in InDesign must match those copied (from) exactly, and must be pre-selected when the Paste command is executed. So...
    1. Set up empty destination table in InDesign which matches the source structure.
    2. Select source cells and Copy.
    3. In Indesign, select exact same (x, y, qty), range of destination cells and Paste.

  • Regex expression for extracting whole numbers?

     I would like to ask, how can I modify the code below, so it only returns int values inside the specific string, >100 which is a  whole number. 
    The code below returns the following strings = 2525, 130, 129s, MH350s, from which '2525' is incorrect.
     The value '2525' is extracted from '97.2525', which is a decimal number and should only extract value greater than 100, which is whole integer, not decimal numbers.  Is their a way to
    extract whole numbers using the regex expression.  
    public class Program
    public static void Main()
    // An example collection of your input
    var input = "ASW+90s, N+20s, 97.2525, M45s, 130.5, +129s, 48E. MH350s";
    var re1 = new Regex(@"^(\d+)[sS]$");
    foreach(var match in Regex.Matches(input,@"\w*[1-9]\d{2,}\w*"))
    // Output each match
    Console.WriteLine(match);
    any advice further, would be very much appreciated.  Thank you

    You've already asked this question in the forums and several people provided the RE that you need to do it right.  Your RE is for integers, not fixed point values.
    I replied to your original post and gave you the exact RE that parses the strings like you wanted. If you use that code then you'll get the results you want.  The only piece missing now is that you are breaking up a single string into substrings for
    parsing. To do that use
    String.Split to split the string at the commas. The result is an array of values without the commas.  Using the previous code you end up with this: 
    var inputs = input.Split(',');
    var numbersGreaterThan100 = from i in ExtractNumbers(inputs) where i > 100 select I;
    Michael Taylor
    http://blogs.msmvps.com/p3net

  • Why does the sum function not work when I try to add a column of decimal numbers?  The value is always returned as 0.  No problem with whole numbers but decimals do not work!

    just bought a MacBook Air and using Numbers to make a spreadsheet for financial purposes.  The sum function is working ok for whole numbers but when I try to sum a column of 2 decimal place numbers the result always comes back as 0.  Can anyone help?

    Hi laura,
    I suspect that your 2 decimal place numbers are formatted as text. Change the format of the column to currency and see it that works.
    Also You might want to update your profile to reflect your current systems!
    quinn

  • Serial number management only allows whole numbers

    Hi
    If we have a material that has EA has basis unit of measure and KG for
    order unit, when doing goods receipt against purchase order:
    Situation 1:
    Qty in Unit of Entry 1.000 KG
    Qty in SKU 100 EA
    Qty in Delivery Note 100 EA
    No error message.
    Situation2 :
    Qty in Unit of Entry 999 KG
    Qty in SKU 99,900 EA
    Qty in Delivery Note 100 EA
    and we get error message serial number management only allows whole
    numbers. Quantity delivered is the same in basis unit so why is the
    system producing the error message? Is there a way of avoiding this?
    BR

    Hi,
    Serial numbers are maintained for quantity in base unit of measure.
    In your example quantity is not a whole number (99,9 EA). 1 serial number is assigned to each unit; however system is unable to create serial number for 0,9 units here.
    You cannot use serial number if you have units which have decimals.
    Check serial number profile assigned to material in material master.
    If stock check is not very important, try to change stock check setting to warning for serial number profile in IMG txn OIS2.
    Best regards,
    Ramki

  • Background Image Position Whole Numbers vs Decimals

    Hi EA experts,
    I'm using sprite sheets to create animations in Edge Animate CC and have run into a peculiar problem: Occasionally, when I am animating frame-to-frame and changing the background image position, the numbers I input (for example, -400) end up somehow being changed to a value a few decimal points off (such as -399.96). When playing the animation back, even this tiny fraction of a pixel difference ends up causing the sprites to shift and play back choppily. What's more frustrating still is that Edge Animate shows the X/Y values as the correct whole-numbers I inputed, until I click on them (see attached). Given the amount of animation I'm doing, now that I've found out this is the problem, I have maybe hundreds of X/Y values to correct.
              The whole number I input is displayed......                                   until you click, and see that it's off a bit
    Is there a way to easily correct this? Perhaps a way to make Edge Animate only accept whole numbers for background image position values?
    Thanks,
    -Adam

    Whole numbers kick decimal butt.
    Also, that's not how you calculate leap years. Just
    an FYI.What is it? Leap year if %4 == 0 and %100 != 0?
    I think... whatever, Google is your friend.

  • Y-axis help in Numbers

    I am making a graph in Numbers, and I'm trying to start the y-axis from 4 rather than 0. Does anyone know how to do that?
    Thanks!
    Olivia

    You select the graph, then open the Chart Inspector (it is in "The Inspector" in the tool bar... top right)
    Then select the "Axis" tab and change the Value axis Min

  • How do you change the y axis value in numbers

    Hi
    relatively new to numbers. How do you alter axis value and set minimum, maximum values an step values in numbers
    Cheers

    Hi CA,
    Did you really intend to post this Numbers question in the Pages forum?
    Axis values are set in the Axis section of the Chart Inspector:
    Select the chart.
    Default values are 4 steps and auto settings from data for the min and max values for each axis. The x axis is a Value axis only for a scatter chart. Otherwise it is a Category axis.
    To set Min, Max values and number of steps for either axis, click in the appropriate box, then either type the value or use the stepper (which apears) to step to your chosen value.
    The maximum number of steps is 10.
    Regards,
    Barry

  • Chart horizontal axis show whole year

    Hi All,
    How to display whole year month as horizontal axis even if no data? for example, currently I have data for FY13 up to Jan 13, no data for Feb 13, Mar 13, Apr 13, May 13 and Jun 13 yet, in the chart it will automatically showing horizontal axis from July 2012 to Jan 2013, but I want to show horizontal axis from July 2012 to June 2013, if not yet data, line stops.
    Thank you,
    Ling

    Hi,
    Apart from the option mentioned above, you can also create an right outer join in the BMM layer of the RPD.
    This is only recommended if the data expected by you is the same in all the reports using this combination of the tables.
    Thanks,
    Vineeth

  • Whole numbers in Tabular

    Hi,
    I am trying to show 30 digits numbers in Tabular.
    The only way I am able to do it is as decimal number type and whole number format but the number doesn't appear correctly this way. it changes from 1080267463514405122129312072087 to this 1080267463514410000000000000000.
    The whole number data type can't containe 30 digits numbers because it's too small.
    Is there a better way?
    Thank

    This select CONVERT(numeric(38,0),1080267463514405122129312072087 );
    will output this value: 1080267463514405122129312072087
    No change in the number, what is the actual datatype in your table?
    Fouad Roumieh

  • How to change axis values in Numbers

    In v1.7 I have tried to change the axis values on existing charts but can't find how to do it...
    So I tried to create bar charts from scratch in order to rebuild the old ones with the new axis data but I can't find out how to set any of the axis values on chart creation now!!
    Has something changed - or am I just thick/blind?!!

    Is it so difficult to read given answers ?
    Barry described the correct scheme.
    In the table "to_chart", the cell A1 contains :
    =ROUNDUP(ABS(MIN(Tableau 1 :: B:E))/10,0)*10
    The cell B2 embed the formula :
    =$A$1+Tableau 1 :: B2
    Apply fill down and fill to the right.
    On the left edge, the colored rectangle is a text block in which I inserted the label values.
    Of course if you dislike this scheme, you are perfectly free to use an other application.
    Yvan KOENIG (VALLAURIS, France) lundi 4 juillet 2011 14:37:56 iMac 21”5, i7, 2.8 GHz, 4 Gbytes, 1 Tbytes, mac OS X 10.6.8
    Please : Search for questions similar to your own before submitting them to the community
    To be the AW6 successor, iWork MUST integrate a TRUE DB, not a list organizer !

  • Whole Numbers in SQL Queiries

    I have produced the query below so that it will alert our purchaser when he needs to chase up undelivered goods inwards. I want the qty only to display as a whole number rather than having 3 decimal places after it, i am sure there is way of doing this just not sure how to
    SELECT T0.[DocNum] AS Doc, T0.[CardName]AS Supplier, T1.[LineNum] AS Row, T1.[ItemCode] AS Code, T1.[Dscription] As Desciption, T1.[Quantity] AS Qty, T1.[ShipDate] AS [Del. Date], T1.[OpenQty] AS [Qty to Deliver] FROM OPOR T0  INNER JOIN POR1 T1 ON T0.DocEntry = T1.DocEntry WHERE T1.[ShipDate] > GETDATE() -7 AND T1.[ShipDate] < GETDATE() +7 AND T0.[DocStatus] = 'O' AND   T1.[OpenQty] > 0 AND T1.[LineStatus]  = 'o'

    Hi ,
    if need 2 decimal place  , try this
    SELECT T0.DocNum AS Doc, T0.CardName AS Supplier, T1.LineNum AS Row, T1.ItemCode AS Code,
    T1.Dscription As Desciption, cast(Round(T1.Quantity,1)as decimal(30,2)) AS Qty, T1.ShipDate AS 'Del. Date'
    ,cast(Round(T1.OpenQty,1)as decimal(30,2))AS 'Qty to Deliver'
    FROM OPOR T0 INNER JOIN POR1 T1 ON T0.DocEntry = T1.DocEntry
    WHERE T1.ShipDate > GETDATE() -7 AND T1.ShipDate < GETDATE() +7 AND T0.DocStatus = 'O'
    AND T1.OpenQty > 0 AND T1.LineStatus = 'o'
    regards
    Ashish
    Edited by: ASHISH RANJAN on Mar 1, 2011 5:56 PM

Maybe you are looking for

  • How do I get an itunes connect account

    how do I get an itunes connect account

  • Apps wont download..

    I cant seem to download any Apps, it brings me to my itunes account, I have a credit card (mastercard) and im filling everything it tells me to, but once i click "Ok/Done" it says "invalid Security Code", but im using the right card/number, its the 3

  • When apple tv syncs with itunes the media disappears from the apple tv

    evrytime i purchase something through the apple tv i can play it on my tv until it syncs with itunes. after the sync the media just transfers over to my computer. how can I leave the stuff I buy in apple tv stay in the apple tv. and all of those othe

  • Tax Total

    Hi All, We have found three sales orders created through SB1 Interface, where we define tax (12%) for every item at row level, but when we see at the end of the document, it does not show any amount on Tax (VatSum), where that tax field at the end of

  • Getting Runtime dump AMDP_VERSION_MISMATCH

    Hi , i have created AMDP procedure and call it from ABAP object. It shows the above mentioned dump in  test system while it works perfectly in dev system. Dump's details are : Version conflict when calling a database procedure   Version conflict when