Chart value mismatch with excel and Illustrator

Please advise anyone in the below issue.
If using below data from Illustrator (16.3 to 0.3  (clockwise)) then 0.2 and 0.3 values are merged in pie chart. Please see the variance below.
Thanks in advance.

HI Sankar,
This is a standard behaviour as Currencies with 2 decimals will be getting rounded off. One work around to avoid posting of Small differences in Invoices (DIF accounts) is to maually change the amount in the Account assignment in the Invoice line to match to PO line total.
Regards,
Kathir

Similar Messages

  • Width/height/x/y value mismatch with the reality and what is coded

    hello there everyone,
    hope i got the title right..,
    so here goes the problem i need your opinion and help to solve:
    application definition:
    i have this desktop flash application that will go fullscreen what this application do is loading external asset (mostlySWF) and play it inside this application. Each external asset will be place inside a container/holder (empty movie clip created by code), each of this container have it's own dimension ( width, height, x, y).my code all working without any warning nor error.oh and i also have an image.jpg/png as it's background and place at the bottom of display list (depth = 0), the image is customly made with using photoshop and each container location and dimension also measured there so it just needed to be writen down is the XML file..,
    the problem:
    the bug is when i loaded some image of those background image each container width,height,x,y  will mismatch with what i have in the XML file.
    the funny thing is when i trace the value of each container width,height,x,y it value is the same with what the XML has yet by seeing with eye you know that is wrong..,
    here's the code i used:
    var myXML:XML; //to hold the loaded xml file
    var SWFList:XMLList; //used to hold a list of all external swf source,atribute and etc
    var xmlLoader:URLLoader = new URLLoader(); //intance of URLloader class used to XML file
    var totalSWF:int; //hold the total number of external swf there is to be loaded
    var mainContainer:MovieClip =new MovieClip();//act as the main container
    var SWFContainer:MovieClip; //hold the loaded SWF as it's child
    var swfLoader:Loader; //instance of loader class used to load the external swf
    var myCounter:int = 0; //used to track how many external swf has been loaded and added to stage
    var bgImageURL:String;//hold the url of the background image
    var imageLoader:Loader;//intance of loader class used to load background image
    // Stage Setting
    //========================================================================================
    this.stage.align = StageAlign.TOP_LEFT;
    this.stage.scaleMode = StageScaleMode.NO_SCALE ;
    this.stage.displayState = StageDisplayState.FULL_SCREEN;
    //load the xml file
    //======================================================================================== ==
    xmlLoader.load(new URLRequest("FlashBlock[s].xml"));
    xmlLoader.addEventListener(Event.COMPLETE, processXML);
    function processXML(e:Event):void
        e.target.removeEventListener(Event.COMPLETE , processXML);
        myXML = new XML(e.target.data);
        bgImageURL = myXML.Background.text();
        SWFList = myXML.BLOCK;
        totalSWF = myXML.BLOCK.length();   
        doSizeUpMainContainer();
        loadBackgroundImage();
    function doSizeUpMainContainer():void
        //resizing the mainContainer dimension
        //in this case i just make the size the same as the screen dimension
        addChild(mainContainer);
        mainContainer.graphics.beginFill(0xFD562D, 0);
        mainContainer.graphics.drawRect(0,0, stage.stageWidth, stage.stageHeight);
        mainContainer.graphics.endFill();
    function loadBackgroundImage():void
        //load the background image
        imageLoader = new Loader();
        imageLoader.contentLoaderInfo.addEventListener(Event.COMPLETE, onBgImageLoadComplete);
        imageLoader.load(new URLRequest(bgImageURL));
    function onBgImageLoadComplete(e:Event):void
        e.target.removeEventListener(Event.COMPLETE, onBgImageLoadComplete);
        mainContainer.addChild(imageLoader.content);
        imageLoader.x = (stage.stageWidth - imageLoader.content.width)/2;
        imageLoader.y = (stage.stageHeight - imageLoader.content.height)/2;
        loadSWF();
    function loadSWF():void
        swfLoader = new Loader();
        swfLoader.contentLoaderInfo.addEventListener(Event.COMPLETE , swfSetting);
        swfLoader.load(new URLRequest(SWFList[myCounter].@source));
    function swfSetting(e:Event):void
        e.target.removeEventListener(Event.COMPLETE , swfSetting);
       SWFContainer = new MovieClip();
        mainContainer.addChild(SWFContainer);
        // i did this so i can resize the movieclip size to what i need..,
        SWFContainer.graphics.beginFill(0xff6633, 0);
        SWFContainer.graphics.drawRect(0,0, Number(SWFList[myCounter].@width), Number(SWFList[myCounter].@height));
        SWFContainer.graphics.endFill();
        SWFContainer.x = SWFList[myCounter].@left;
        SWFContainer.y = SWFList[myCounter].@top;
        SWFContainer.addChild(e.target.content);
        //load and add another SWFContainer untill all swf listed in the swf added
        if(myCounter < (totalSWF-1))
            myCounter++;
            swfLoader = null;
            loadSWF();
    i really do not have any idea why this could happen and how to solve it..,
    any help would be greatly apprecited cause i'm literally meeting a dead end with this bug..,

    hello there kglad,
    thanks for responding in this thread..,
    i did what you told me :
    i did check all of my loader instance till myLoader.parent.parent.parent and it return 1 for every single one of them
    but by removiing the "this.stage.displayState = StageDisplayState.FULL_SCREEN;"
    i do get new error which is:
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at slideshow_fla::MainTimeline/doAspectRatio()
    well from what it tokd me it came from my slideshow swf..,(this swf also fully code and has nothing placed on stage by manually)
    the thing is in my mine swf code i never refer to what external asset property, i just told to load it and when the load is complete i put it in the display list..,
    from googling i suspect that it played to early beacause i put the script in the first frame of the timeline of slideshow.swf
    and for the moment i'm trying to find what error do cause it..,
    (but why this didn't happen all the time??)
    here is the slideshow code:
    import fl.transitions.*;
    import fl.transitions.easing.*;
    import flash.display.*
    import flash.utils.Timer;
    import flash.events.TimerEvent;
    //list of global variables
    var mySlideSpeed:Number; //determine how long each image displayed
    var myTransitionName:String; //the name of the transition to be used
    var myxmlList : XMLList;//reference to the list of the image
    var myTotal:int;     //total of image to be displayed
    var myImage:Loader;//load the image into the container
    var tempWidth:int;
    var tempHeight:int;
    var myTraansitionInDuration:int = 2;//the duration of transition in effect
    var myTraansitionOutDuration:int = 2;//the duration of transition out effect
    var myThumbHolderArray : Array = [];//to hold each thumbimage of the image
    var Counter : Number = 0; //to count how many image has been successfully loaded
    var myMC : MovieClip = new MovieClip(); //as the container of the picture so that it can be manipulated with transition manager
    var container: MovieClip = new MovieClip();//hold the image after transition
    var myImageTracker :Number = 0; //to know which image is in the stage
    var myTimer :Timer; //the timer
    var myTM:TransitionManager = new TransitionManager(myMC);//instance of transitionmanager class;used to give transition effect the image
    //creating the loader instance n loading the file
        var myXML:XML;
        var XMLLoader :URLLoader = new URLLoader();
        XMLLoader.addEventListener(Event.COMPLETE, processXML);
        var base:String = this.root.loaderInfo.url;
        base = base.substr(0, base.lastIndexOf("/") + 1);
        XMLLoader.load(new URLRequest(base + "slideshow.xml"));
    function processXML(e:Event):void
        e.target.removeEventListener(Event.COMPLETE, processXML);
        XML.ignoreWhitespace = true;
        myXML =new XML(e.target.data) ;
        mySlideSpeed = Number(myXML.transition.@slidespeed) + myTraansitionInDuration + myTraansitionOutDuration ;
        myTimer = new Timer (mySlideSpeed*1000);
        myTimer.addEventListener(TimerEvent.TIMER, imageRemover);
        myTransitionName = myXML.transition.@name;
        myxmlList = myXML.IMAGE;
        myTotal = myXML.IMAGE.length();
        imageLoader();
    function imageLoader():void
        for (var i:Number = 0; i < myTotal; i++)
            var imageURL:String = base + myxmlList[i];
            var myLoader:Loader = new Loader();
            myLoader.load(new URLRequest(imageURL));
            myLoader.contentLoaderInfo.addEventListener(Event.COMPLETE, onComplete)
            //transfering each thumb image loaded to a variable to be able to be refered back when the show is running
            myThumbHolderArray.push(myLoader);
    function onComplete(e:Event):void
        Counter ++;
        if(Counter == myTotal)
            e.target.removeEventListener(Event.COMPLETE, onComplete);
            showStarter();
    function showStarter():void
            addChild(container);
            addChild(myMC);
    //        myMC.x = container.x = myMC.y = container.x = 0;
            doAspectRatio();
            imageSlider();
    function doAspectRatio():void
        for (var i:Number = 0; i < myTotal; i++)
            myImage = Loader (myThumbHolderArray[i]);
            if (myImage.width > myImage.height)
                tempWidth = myImage.width;
                tempHeight = myImage.height;
                //supposedly to access the container dimension holding this swf as it's child
                myImage.width = this.parent.width;
                myImage.height = (tempHeight * this.parent.height)/tempWidth ;
            else if (myImage.width < myImage.height)
                tempWidth = myImage.width;
                tempHeight = myImage.height;
                myImage.height = this.parent.height;
                myImage.width = (tempWidth * this.parent.width)/tempHeight ;
    function imageSlider():void
        if (getChildIndex(container)== 1)
            swapChildren(myMC, container);
        myImage = Loader (myThumbHolderArray[myImageTracker]);
        myMC.addChild(myImage);
        //center the image
        myImage.x = (this.parent.width - myImage.width)/2;
        myImage.y = (this.parent.height - myImage.height)/2;
        if (myTransitionName == 'Fly')
            myTM.startTransition({type:Fly, direction:Transition.IN, duration:myTraansitionInDuration, easing:None.easeIn, startPoint:7});
        else
        if (myTransitionName == 'Zoom')
            myTM.startTransition({type:Zoom, direction:Transition.IN, duration:myTraansitionInDuration, easing:Strong.easeIn});
        else
        if (myTransitionName == 'Photo')
            myTM.startTransition({type:Photo, direction:Transition.IN, duration:myTraansitionInDuration, easing:None.easeIn});
        else
        if (myTransitionName == 'Squeeze')
            myTM.startTransition({type:Squeeze, direction:Transition.IN, duration:myTraansitionInDuration, easing:Strong.easeIn, dimension:0});
        else
            myTM.startTransition({type:Fade, direction:Transition.IN, duration:myTraansitionInDuration, easing:Strong.easeIn});
        myTM.addEventListener("allTransitionsInDone", holdDelay);
    function holdDelay(e:Event):void
        this.removeEventListener("allTransitionsInDone", holdDelay);
        myTimer.start();
        container.addChild(myImage);
        if (getChildIndex(myMC)== 1)
            swapChildren(container, myMC);
    function imageRemover(e:Event):void
        myImageTracker ++;
        if (myImageTracker == myTotal)
            myImageTracker =0;
        imageSlider();
    and by the way can you tell me the reason you told me to remove "this.stage.displayState = StageDisplayState.FULL_SCREEN;" line ??

  • Task Total Slack Calculated values mismatching with the values in reporting database

    Hi,
    We require 'Task Total Slack' as one of the items in a report for Project Server 2010. We're developing the reports using SSRS wherein the SQL Queries are fired on the reporting database of Project Server 2010.
    We've come across a situation wherein the total slack values from reporting database for tasks are mismatching with the values that are seen in either PWA or Project Professional for total slack field. We also could not find a consistent factor by which
    the slack is multiplied for reflecting in the database in case the Slack in days was being converted into Hours in reporting databse.
    Is there a definite way that these values are being represented in reporting database which is quite different from the way these values are seen in Project Professional? Please help resolving this issue.

    Hi Abhijit PS,
    Can you give an example of the mismatch? Also you could tell us if this is happening for all tasks and all projects. Your concern may be seen from 2 different points of view:
    Either this is indeed a bug with a slack of 2 days for example in Project Pro and 4 days in your report from the reporting DB. In this case, you should check if the projects have been published correctly and if the Reporting DB is correctly sync'ed with
    the draft DB.
    Or it could be the normal behavior and it is just a matter of finding why. For example, the durations are stored in the DB in minutes, meaning that a 1day duration might be stored as 480 if you have 8 working hours in a day (8*60).
    Hope this helps,
    Guillaume Rouyre, MBA, MVP, P-Seller |

  • COPA values mismatch between KE24 and KE30

    Hello,
           Background: After recent implementation because of wrong configuration, June and July has wrong COPA values (documents). I have been assigned to reverse these documents and We have been given the documents(with excel file all the values in it) we need to reverse and adjust with new values. I was able to reverse successfully using SCAT(for KE21N). We got exact result what we expected with KE24 report but KE30 is not reflecting same result. However in KE24 report is matching penny by penny after reversal.  We just wanted to know the steps we are following is correct or Is there any other efficient method to resolve this issue. Why KE30 report is not in sync with KE24? Is KE30 is reading from different tables. Please advise ASAP. 
    Thanks,
    Pravin & Vishwa

    Hi shivaji,
    What is the reason for the difference in the amount. you may have to manually clear the documents using transaction F-03 or F-32 and post the difference manually.
    Regards
    Mahendra
    Assign points if this helps

  • Need help with Excel and ActiveX

    I am new with working with ActiveX, so I need some help regarding writing to a spreadsheet. Here is what I need to do:
    1.The user weighs a product on a scale.
    2.The user presses the weight button control in labview to retrieve the weight via serial port.
    3.The value gets written into a spreadsheet, starting at D2.
    4. User weighs the same product after use to get a new weight.
    5. labview goes through the same process, but this time it gets written to E2.
    6. Differential is calculated (still debating on having the user do this in Excel instead of Labview, since they have to set up a spreadsheet outside of labview for other info not related
    to weight).
    7. User close labview when finished.
    The serial comm and all is fine, but the problem I am having is trying to get a specific cell value written in D2 and then getting another value to be written in E2. For example, initial weight would be D2 and post weight would be E2, and then differential would be F2. For the next product, it would be D3, E3, F3, and so on. What would be the best way to implement this? It looked as if ActiveX would be the only real way to tell Excel where to put the data, but there is still alot I have to learn in where to find and use the proper nodes to complete the process.
    Thanks,
    Jody M.
    The Procter and Gamble Co.
    Certified Labview Developer
    Currently using LV2012.

    Hi z2830than,
    see the attached example. It make following things: open Excel, create new Workbook, ..., write Data to D2, save Workbook and close Excel.
    Hope it helps.
    Mike
    Attachments:
    Excel_open_write_close_Example_LV71.llb ‏234 KB

  • Why does my lion starts up with excel and entourage? how do I turn this off without cousing trouble to my software or the start up of my macbookPro?

    I have a problem starting up my new lion version for my macbookpro, it is starting up with entourage and excel? How do I solve this?
    Thanx
    JMW

    By default, your system will automatically restart with all of the same applications open that were open when you shut it down.  When you tell your system to shut down or restart, you will get a dialog box like below.  You need to uncheck the box.  Note that your election here will not be permanent... you will need to select it each time you shutdown (or just close all of your applications before you shutdown).

  • Working with EXCEL and WORD files on a Mac Pro

    Hello,
    I have a lot of EXCEL and WORD files and the compatibility with NUMBERS and PAGES is not really satisfying. Is there a EXCEL and WORD app which runs without surprises on a Mac Pro?

    Welcome to Apple Support Communities
    Microsoft sells its own Microsoft Office version for OS X > http://www.microsoft.com/mac Microsoft Office for Mac will be the application that will give you less headaches when using Office documents, so I recommend it.
    Another application you should consider is LibreOffice, which is free > http://www.libreoffice.org

  • Value mismatch in ME23N and MIRO for PO with multiple account assignments

    Hello All,
    I've a PO for indriect material procurement with no material master and I've a single PO item with Account Assignment Category as "K" (Cost Center) and Net Price as "1,357.91". Account Assignment has been distributed by percentage such that 50% goes to a cost center and the remaining 50% goes to another cost center.
    When I do MIRO, the amount comes as "1.357,92". This is because, the actual PO price "1,357.91" is divided by 2 equal half due to multiple account assignment and the individual amount comes to 678.955. And this is rounded off to 678.96 and multiplied by 2 in MIRO and the final amount comes to "1357.92". So as you see, the variance between PO price and MIRO price is 0.01.
    How to get rid of this variance? Can something be done to match the PO value and MIRO value the same?
    Thanks for your inputs.
    Sankar

    HI Sankar,
    This is a standard behaviour as Currencies with 2 decimals will be getting rounded off. One work around to avoid posting of Small differences in Invoices (DIF accounts) is to maually change the amount in the Account assignment in the Invoice line to match to PO line total.
    Regards,
    Kathir

  • Problems with Excel and Word 2013 saving to OneDrive for Business

    I've had OneDrive for Business running for about a month without any problems. On Thursday I noticed I wasn't able to save an Excel 2013 spreadsheet to my OneDrive account. When I try to save it a box comes up that it's communicating with OneDrive then I
    get an error that the file wasn't able to upload due to permissions. I've tried to resync and repair OneDrive, but that didn't help. I also repaired Office 2013.
    If I create a txt file in Notepad I can save immediately to the same folder on OneDrive. If I create a new spreadsheet and hit the browse button to save it takes forever for OneDrive to access the folder then I get an upload error saying it cannot save and
    to make a copy.
    Should I re-install Office 2013?

    Hi,
    Are you able to new a Word/Excel file directly in that OneDrive folder?
    Please first try to remove and re-add the OneDrive service in Office and then verify result.
    You might also want to install any available updates, make sure your system/Office is up to date and then try again.
    Regards,
    Ethan Hua
    Forum Support
    Come back and mark the replies as answers if they help and unmark them if they provide no help.
    If you have any feedback on our support, please click
    here

  • Can I get Macrosoft windows with excel and Outlook express.  I have the disk for office mac for my mac book.  Can I install that disk to an Ipad 2?

    I have Office Mac for home and office.  Can I use the same installation disk on an Ipd2?

    I suggest checking out the app: QuickOffice. It's $14.99 and gives you full compatability to MS Excel, Word & PowerPoint to read, edit and create files. Pair it with the free app "DropBox" to easily transfer files back and forth between your iPad and your desktop.

  • Creating a catalog with excel and InDesign CS6

    Help! Why can't it be as easy and importing an MSWord Doc? I've been reading about data merge and XML and both are just not working for me. I'm probably doing something wrong. Right now. I'm just trying things out to figure out the best way to execute. When the live text is ready I will have up to 5,000 skus to place in up to 200 pages. I'm using InDesign CS6 - My templates are done, text boxes are linked and style sheets set up. I need to figure out a way to import the excel doc with the columns that I need, in the order I need and somehow (hopefully) styled accordingly. I'm more concerned with the text than the images, so I can import the images on my own.
    With Data merge, I'm noticing that it won't work with linked boxes..the text is styled but it won't flow from one linked box to another.  With XML - I think I'm close, but when I have the tags in place, will only allow me to import one story at a time.
    Anyone have experience doing large catalogs? What can you suggest?
    Thank you in advance for your help!

    Your observations above about Data Merge are correct. It's probably not appropriate for this job. If you do a lot of catalog work, investing in one of the commercial catalog plugins would probably be a good idea.

  • Java with EXCEL and Access

    I have a program that imports an EXCEL file as an Access database.
    One field in the EXCEL file contains ZIP codes which, when imported into the database are stored as numbers/double. I would , however, like to import these as char. Any way I could do this using a code?

    I am using the resultset and the metadata functions to get the column type. I use the getString(6) function in the resultset..which returns the data type..
    When the zips are arranged in random order..this retuens the column type as NUMBER which messes up the program...however if I arrange the column in the descending order...it returns VARCHAR and the program runs perfectly...How can I get it to return NUMBER even if the contents of the column are arranged randomly?

  • How do you make OS X Lion work with excel and word? I have these programs that I use for work?

    I up loaded Lion...now windows word and excle dont work. I use these for work. How do i get them to work with Lion.

    jbeustis wrote:
    I up loaded Lion...now windows word and excle dont work. I use these for work. How do i get them to work with Lion.
    Upadte to the current version of Office, 2011

  • Excel Chart High-Low Lines Not Rendering when Chart Object Contains No NumCache and StringCache

    I have a number of Excel xlsx files which contain a Chart object configured with High-low Lines.  The High-Low Lines render without issue when the Number Cache & String Cache exist in the file.  A process updating the files removes the Number
    Cache and String Cache from the Chart Object.  After this process has updated the files Excel no longer observes the High-Low Line configuration.  I have verified that the files still contain the setting for the Chart to have High-Low Lines (<c:hiLowLines
    />).  Excel does not recognize that the setting is set (not rendered when viewed or preserved in the file settings after saving in Excel). Excel does not present any errors and everything else works fine.
    Reproduction of Issue:
    1. Create an Excel Document containing a Chart Object with High-Low Lines enabled.
    2. Manually edit the chart1.xml file (in the xlsx file), removing all the Number Cache and String Cache entries from the document (<c:numCache/>, <c:strCache/>).
    3. Open the Document in Excel and view the Chart.  It will not draw the High-Low Lines and if saved the file will no-longer contain the hiLowLines setting.
    The issue has been confirmed in Excel 2010 and Excel 2013.

    The issue has been tested on different computers, 11 in total.  The OS ranges from Windows 7 to Windows 8.1.
    I have not tried in other file formats.  Due to the requirements of the project I'm restricted to xlsx.
    The application interacting with the files is proprietary.
    I've simulated the issue by removing the Number Cache & String Cache manually from the Chart1.xml file.  This causes the issue to occur.  I will note that if i only remove one of the cache entries from the file the High-Low lines will be observed
    in Excel.  It seems to only happen if all of the cache entries are removed.  The file is never interpreted by Excel as corrupt under any of the modifications.
    The issue seems like Excel fails to evaluate the High-Low Lines property when the cache is completely removed.  I'm not sure what Excel is doing to negate the property under the condition of no cache.  After the files is opened with Excel and saved
    the High-Low Lines property no-longer exists in the file.

  • Is Bridge CC, Edge Code CC, Scout CC comes free with Adobe CC and Illustrator CC??

    I have just bought Adobe Photoshop CC and Adobe Illustrator annual subscription both single user. Now after I downloaded the installer CreativeCloudSet-Up.EXE
    I noticed that Photoshop and Illustrator has a "INSTALL" buttons.. other application like AFTER EFFECTS has a "TRY" button..
    My internet connection failed a couple of times during the creditcard payment.,, now my worry is, I saw the following application below with a "INSTALL" button..
    Touch App Plugin
    Gaming SDK1.4
    Bridge CC
    Edge Code CC
    Edge Inspect CC
    Edge Reflow CC
    Exchange Panel
    Extendscript Toolkit CC
    Extension Manager CC
    Scout CC
    I do not know if these Adobe applications are FREE with Photoshop and Illustrator. Or did I bought them unintentionally and will be charge in my creditcard?  Please someone.. answer me. Thank you

    Since you have purchased single app for Adobe Photoshop CC and Adobe Illustrator CC so you shall be able to download, install & activate these two products only.
    Regards
    Rajshree

Maybe you are looking for

  • Problem with missing colors when printing

    It has been sugested by HP that I try this forum for help. The following is a copy of the email I sent them which describes my problem, I hopesomeone can help! Thanks. language_code : en language : English Country of Residence : France product_line :

  • Installing of Itune is completed but still Itune is not working

    I have Dell XPS, OS Vista Ultimate, 32 Bit . I installed Itunes from apple support link and installation is complete without any error. But When I try to run Itunes, it do not open and give error. When I look out for problem details, its says., Probl

  • LR 1.3.1 on MAC rotate photo shortcuts do not work

    After update to LR 1.3.1 on MAC / Leopard the shortcuts for rotating the picture don't work any more (was function + . for right and function + , for left) Any body noticed this too?

  • Acrobat XI will not execute on my Win8 box

    I have installed Acrobat Xi through the CC on my computer and at first when I brought up Acrobat  I received the following error: Acrobat failed to connect to a DDE server. How can I fix this?

  • Displaying categories using an analitic webpage

    using bo 6.1 and XIR2, we were able to create a dashboard showing a list of reports belonging to a categorie. We did this by creating an analitic webpage and pasting a URL displaying the contents of this categorie. In XI R3 we could not find this URL