Build the Bar chart from Cross Tab which have 3 measures with cell refr.cal

Hello Friends. I want to Build the Bar chart from Cross Tab which have 3 measures with Actual , Plan and Forecast
But Issue here is each cell is defferent like i have to do different calculation for each cell for actual, plan, forecast
like A = Jan act/Budget actual, Where as B = Feb Act/ Jan Budg+Febbdgt_March Budget
So now when I right click to say turn to Chart it is not generating the chart
Please help how to build bar chart since i do not have 1 key figure which i can drag and drop in view structure of chart so how to handle this
                         Jan,  Feb, March, Aprl, May, June
Actual                  A       B       C     D
Plan                     N       M       O     P
Forecast
SONIYA

Hi Soniya,
It will be better if you can get these keyfigures calculated from the BEx with the help of structures in the BEx.
At the report level it will be complex to create these variables and also not sure whether going to work:
But you can try something like this:
A= If (L01 Moths="JAN") then Sum (Actual)/Sum (Bud) Else 0 similarly for other months.
Then you need to create one more variable (measure) which should be plotted on the chart as:
Final Act = If([L01 Month]="JAN") Then A ElseIf([L01 Month]="FEB") Then B ElseIf([L01 Month]="MAR") Then C
Final Plan= If([L01 Month]="JAN") Then N ElseIf([L01 Month]="FEB") Then M ElseIf([L01 Month]="MAR") Then O
similarly you have to create variables for Forecast, then finally you can plot final 3 variables in the graph.
Hope it helps you.
Regards,
Rohit

Similar Messages

  • Building Flash Bar Chart

    HI
    I am building a flash bar chart which works, I load data from
    a txt file.
    When I load whole numbers, the chart works fine but when I
    load a number like 7.5 it stays at 7 or
    goes to 8.
    I am using the flash time line as the reference on the bar
    chart. My question is there a way to get the .2, .5 decimal spots
    to match up correctly? how can I do this?
    Thanks
    -Pablo

    If you are using Apex version 3, it uses Anychart version 3.
    If you want to use the custom XML option on your chart you need to know the XML spec. If you look on the Anychart website, their documentation is for Anychart version 4 and will not work! Check out the version 3 documentation at;
    http://3.anychart.com/products/docs/anychart/index.htm

  • How can I avoid the null values in cross tab?

    How can I avoid the null values in cross tab?

    Hello Anindita,
    Let me explain you the problem in detail.
    I have selected User and Program as rows in the cross tab. In Summarized Field I am counting the Programs.
    In DB I can have both User and Program null.
    Letu2019s take these scenarios...
    1) For a User, Program can be null
    2) For a Program, User can be null
    3) And both can be null.
    A null Program does not give problem since Cross tab does not count the null values and in my case too, it remove the Program which are null from the Cross tab because of the counting its doing on Program. Hence scenario 1 and 3 is not a Problem.
    Problem comes in scenario 2 (For a Program, User can be null).
    In this case since Program is not null it will get counted and will be grouped under null user but I donu2019t want to show the null user Grouping in my cross tab.
    "Suppress empty rows" and "suppress empty colums" does not help.
    Thanks & Regards,
    Amrita

  • How to change the bar chart rendering image format in SSRS

    Hello all,
    I am working with SQL Server 2008 R2 and I have a SSRS bar chart report, when the report got rendered over online or if the take Export (PDF and PPT), the image is in png format always, which is taking too much of time to execute the report in case of large
    data.
    Can, It be possible that the rendered image is in jpeg format instead of png.
    If Yes, please share the appropriate steps to follow:
    Thanks in advance
    Pankaj Kumar Yadav-

    Hi Pankaj067,
    According to your description, you want to change the bar chart rendering image format as JPEG format when previewing the report or exporting to a PDF file .
    In Reporting Services, the chart rendering image format is PNG by default. It’s a by-design behavior. And it doesn’t open any API for us to change the image type when exporting a chart to a format. So in your scenario, your requirement can’t be achieved
    in Reporting Services currently. I would recommend you submit a feature request to Microsoft at this site:
    https://connect.microsoft.com/SQLServer. So that we can try to modify and expand the product features based on your needs.
    If you have any question, please feel free to ask.
    Best regards,
    Qiuyun Yu
    Qiuyun Yu
    TechNet Community Support

  • How to create a vertical bar chart from a table? (PHP, HTML and CSS)

    Hi everyone,
    I have created a table and wish to proceed to do it even better in terms of analysis pattern. I want
    to create a vertical bar chart from the created table but I dunno how to start it.
    Here is the code for the table:
    <?php
    $gpa11=$_REQUEST['gpa11'];
    $gpa12=$_REQUEST['gpa12'];
    $gpa21=$_REQUEST['gpa21'];
    $gpa22=$_REQUEST['gpa22'];
    $gpa31=$_REQUEST['gpa31'];
    $gpa32=$_REQUEST['gpa32'];
    $gpa41=$_REQUEST['gpa41'];
    $gpa42=$_REQUEST['gpa42'];
    $gpa51=$_REQUEST['gpa51'];
    $gpa52=$_REQUEST['gpa52'];
    ?>
    <!doctype html>
    <html lang="en">
       <head>
          <meta charset="utf-8">
          <meta name="viewport" content="width=1024">
          <title>Feng Mentor Mentee</title>
       </head>
       <body>
          <div id="wrapper">
             <div class="chart">
                <h3>GPA Performance Graph</h3>
                <table id="data-table" border="1" cellpadding="10" cellspacing="0"
                summary="The performance of students throughout the years in university">
                   <thead>
                      <tr>
                         <td> </td>
                         <th scope="col">Year 1</th>
                         <th scope="col">Year 2</th>
                         <th scope="col">Year 3</th>
                         <th scope="col">Year 4</th>
                         <th scope="col">Year 5</th>
                      </tr>
                   </thead>
                   <tbody>
                      <tr>
                         <th scope="row">Sem 1</th>
                         <td><?php echo $gpa11;?></td>
                         <td><?php echo $gpa21;?></td>
                         <td><?php echo $gpa31;?></td>
                         <td><?php echo $gpa41;?></td>
                         <td><?php echo $gpa51;?></td>
                      </tr>
                      <tr>
                         <th scope="row">Sem 2</th>
                         <td><?php echo $gpa12;?></td>
                         <td><?php echo $gpa22;?></td>
                         <td><?php echo $gpa32;?></td>
                         <td><?php echo $gpa42;?></td>
                         <td><?php echo $gpa52;?></td>
                      </tr>
                   </tbody>
                </table>
             </div>
          </div>
       </body>
    </html>
    Here's the look:
                                                              GPA Performance Graph                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
    Year 1
    Year 2
    Year 3
    Year 4
    Year 5
    Sem 1
    Sem 2
    Please help me on this because this is my 1st project on php.

    Hi
    Are you using BI query? If yes then follow the steps -
    1. Take Sales org in rows of BI query. & take invoice type & Key figure in Columns.
    2. In VC use this query & drag chart from the output of this query.
    3. Right click on chart & go to 'Configure Element'. There select Chart Type as 'Bar chart'
    4. Below that you will get default option as clustered, there you select 'Stacked'
    5. Create Data series as per your requirement.
    6. Arrange proper layout of the model & then deploy.
    You will get required output in stacked format.
    Regards
    Sandeep

  • HT201543 how do i get my old itune library onto my new laptop, my old laptop is broken but all media is on my phone. Most of the songs are from CD's which i no longer have. HELP!

    How do I get my old iTunes library onto my new laptop? My old laptop is broken but all media is on my phone. Most of the songs are from CD's which I no longer have. HELP!

    That is not necessarily true. You are allowed to make a back-up of media you own and, at least in the Netherlands, even a copy of a work you've borrowed from a library. The law expressly permits this and you pay a certain amount for recordable media to allow for home use.  See http://www.thuiskopie.nl/nl for this.  If you then decide to destroy the media, i.e. do not transfer the media to someone else, I don't see how you infringe copyright by keeping the back-up. But I guess some so-called creatives like the idea of making money in all kinds of hypothetical ways...
    It is a nice dream, where you have to work once and then earn a lot of money by selling millions of copies from your work. But buyers can make copies too!! Hahahahahaha!

  • I have just updated to LR5.  I also have a new Camera.  Nikon D800.  Trying to import directly (from camera) into LR.  But unsuccessful. Getting the following message.  "The files are from a camera which is not recognised by the raw format support in Ligh

    I have just updated to LR5.  I also have a new Camera.  Nikon D800.  Trying to import directly (from camera) into LR.  But unsuccessful. Getting the following message.  "The files are from a camera which is not recognised by the raw format support in Lightroom."  How can I import please?

    Hi,
    I assume you mean the Nikon D810 because D800/800E support has been there since Lightroom 4.1
    Currently, because it is a new camera (D810) the only support is in a RC of ACR 8.6 for Photoshop CS6 and CC, as the RC runs out on 31 August it is expected support will be there in the next dot release of Lightroom.
    Current limitations are that only full sized NEF is supported.
    If you wish to import to Lightroom 5.5. you will need to download the DNG Converter v8.6RC and convert the NEF files (full size RAW ony) to DNG then import into Lightroom 5.5

  • How do i disable the bookmarks list from my iPad which is now showing on my new macbook?

    How do i disable the bookmarks list from my iPad which is now showing on my new macbook?

    On the iPad: Settings > iCloud and turn Safari off (if you don't have any other devices you want it to share with)
    and/or
    On the Mac: Apple Menu > System Preferences > iCloud and turn Safari off

  • How to fix the width of each bar in the Bar chart.

    Hi,
    In BO design studio 1.3 is there any way to make each bar in the bar chart with fixed width.
    Thank You,
    Palani.

    Hi,
    if you are using a grid layout the witdht of the bars is not really fixed.
    When you adjust the screen size, the charts and the bars in each chart rezise according to the size of your screen.
    But that is one of the advantages using grids.
    Otherwise the size of the chart and the bars is fixed but as far as I know there is no option to manually adjust the size/width of each bar.
    Regards,
    Steffen

  • TS1544 I am the administrator of my MacBook Pro, which I share with my kids. One of them forgot his password, so as the admin I changed it for his account, but  when I try to see his account, it says I need to provide the keychain password. How can i get

    I am the administrator of my MacBook Pro, which I share with my kids. One of them forgot his password, so as the admin I changed it for his account, but  when I try to see his account, it says I need to provide the keychain password. How can i get it? I have no idea how to sort this out...

    First, make sure caps lock is not on.
    You must back up all data before continuing, unless you've already done so. If you need to back up but can't log in, ask for instructions.
    If the user account is associated with an Apple ID, and you know the Apple ID password, then maybe the Apple ID can be used to reset your user account password.
    Otherwise*, boot into Recovery mode. When the OS X Utilities screen appears, select
    Utilities ▹ Terminal
    from the menu bar. In the Terminal window, type this:
    res
    Press the tab key. The partial command you typed will automatically be completed to this:
    resetpassword
    Press return. A Reset Password window opens.
    Select your boot volume ("Macintosh HD," unless you gave it a different name) if not already selected.
    Select your username from the menu labeled Select the user account if not already selected.
    Follow the prompts to reset the password. It's safest to choose a password that includes only the characters a-z, A-Z, and 0-9.
    Select
     ▹ Restart
    from the menu bar.
    You should now be able to log in with the new password, but your Keychain will be reset (empty.) If you've forgotten the Keychain password (which is ordinarily the same as your login password), there's no way to recover it.
    *Note: If you've activated FileVault, this procedure doesn't apply. Follow instead the instructions on this page:
    If you forget the password and FileVault is on

  • HT1420 How do I deauthorize the use of itunes on computers which have crashed and are no longer accessible??

    How do I deauthorize the use of itunes on computers which have crashed and are not accessible??

    Individual computers can only be deauthorised directly on them, but if you have 2 or more computers authorised then you can log into your account on your computer's iTunes (Store > View My Account) and 'deauthorise all' (which you can do once every 12 months) and you can then authorise/reauthorise the computers that you still have and need : authorising and deauthorising.
    Deauthorising a computer doesn't remove any content from it, it just means that you can't use iTunes content on it until you reauthorise it.

  • How do i transfer the same video from my phone to my ipad with the same id account

    How do i transfer the same video from my phone to my ipad with the same Apple ID .

    Your question doesn't make a lot of sense without a little more information. You can't transfer a video from the phone to the iPad by connecting the devices. There are WiFi transfer apps that will let you send a video from one device to another one. I get the feeling that isn't what you are really asking though because that has absolutely nothing to do with your Apple ID.
    If you want to download the same purchased movie to the iPad that you downloaded to the phone, go to the purchased tab of the iTunes Store on the iPad. Tap the Movies Button. Tap Not on this iPad. Find the movie and tP the cloud icon next to the movie icon and start downloading.
    You must be signed into the same ID on the iPad that you bought the movie with on the iPhone.

  • What driver or software patches do i need to install in my windows 7 laptop, in order for the laptop to capture Bluetooth messages, which is possible with window 8?

    Hi,
    i am connecting a Bluetooth device to my laptop. I notice that Message Analyzer could capture Bluetooth messages only if I am using windows 8? I am using window 7. What driver or software patches do i need to install in my windows 7 laptop, in order for
    the laptop to capture Bluetooth messages, which is possible with window 8?
    Also, i notice that using window 8, i am able to capture Bluetooth message but i am not able to display wireless perfromance statistics such as signal strength, throughput, etc? Is there a way for me to get such information.
    Please help.

    If you look at the link you sent me:Default Trace Scenarios
    http://msdn.microsoft.com/en-us/library/jj659262.aspx
    "Windows 8 Bluetooth (Windows 8/Windows Server 2012 or later) 
    Troubleshoot Bluetooth issues"
    So what about Windows 8 earlier? Not supported?
    My question: What driver or software patches do i need to install in my windows 7 laptop, in order for the laptop to capture Bluetooth messages, which is possible with window 8?

  • I have Photoshop Elements 9. I downloaded the plug in 6.0 and it works on the RAW files from Canon EOS 60D, but not with Canon EOS 70D. I cannot download higher versions of plug in, because I have Windows Vista and it is not supported.

    I have Photoshop Elements 9. I downloaded the plug in 6.0 and it works on the RAW files from Canon EOS 60D, but not with Canon EOS 70D. I cannot download higher versions of plug in, because I have Windows Vista and it is not supported.

    You could try using the DNG converter 8.7 on Windows vista:
    <Adobe - Adobe Camera Raw and DNG Converter : For Windows : Adobe DNG Converter 8.7>
    <Adobe - Adobe Camera Raw and DNG Converter : For Macintosh : Adobe DNG Converter 8.7>
    You then need to watch this video to get hang of it:
    <Camera Raw: How to use Adobe DNG Converter - YouTube>
    Hope this helps.

  • Does anyone know how to remove the fisheye effect from a gopro camera, remove it with premiere pro c

    Does anyone know how to remove the fisheye effect from a gopro camera, remove it with premiere pro cc.

    Use the Lens Distortion effect, set curvature to your liking.

Maybe you are looking for

  • Billing document to COPA partially

    I would like to make some billing documents generating FI and COPA document, and some would generate FI document only. Does anyone know 1) Is it possible in SAP by seperate different billing type or etc. 2) how does SAP determinate to generate COPA d

  • Should i uptate my 4gen to ios 6 or would i be better to leave it along??

    Hi, I recently bought a 4gen 16gb in late january with the one year warranty and about 2 months ago i got the notifacation saying that ios6 uptate is available. My question is should i uptate or leave it along? Because i know some people were having

  • How to find link between Business partner and Org unit in Solution manager

    Hi experts, Please!!! I have a requirement where my rule finds business partner assinged for that support team and in transaction ppoma_crm we have org unit assigned to that business partner number below that we have positions and user assigned... I

  • CD stuck in my Imac

    Just put a cd in my mac to copy and nothing has happened, no cd icon is showing on the desktop and the cd drive hasn't done anything, can anyone help as I really need to get the cd out as am creating a playlist for my wedding.

  • Help with iTunes, iPhone and a third party app

    First off, I didn't know where to post this, so I am posting it in iTunes because that's where I am having trouble accessing it. I just downloaded the new remote app ( http://gizmodo.com/5023715/apple-remote-iphone-app-controls-your-itunes-over-wi+ f