Customizing Charts (merging Line, column aand stacked charts into one chart)

Post Author: BARTMAN
CA Forum: Charts and Graphs
Hello
I am currently using Crystal Xcelsius 4.5 and am striving to create a hybrid chart. In excel i have customized my chart to incorporate a stacked area chart, a stacked column chart and a couple of line charts thrown into the mix. 
I am perplexed when trying to accomplish the same task in Xcelsius, can not find anything that will allow you to custom build your own graphs.
Does any one have a solution?
Thanks
BARTMAN

I meant have one criteria (one query).
so you'd select :
week of year,
count(Fixed Bugs),
count(reported bugs)
in the same criteria, then select both measures on the 'line' and the week of year on the x axis of the graph?
Any reason why you cant build them into one criteria?
BTW are you measures defined the RPD or are you creating them in Answers on the fly using count() function?

Similar Messages

  • How do I merge two valid, purchased iTunes accounts into one so all my music is in same account?

    I have two valid, purchasd iTunes accounts.  Older iPod has some great music, I just got a new iPad and set up second iTunes account, bought some more iTunes items for that account.  Just discovered iCloud.  Now I want to put all my music from both accounts onto the cloud so I can access it on all my apple devices.   Can't seem to add from one account to the other.  Can sign onto the new account wiht my old iPod, but it will not let me sync without erasing all the music on the device.  How can I merge these two accounts into one?
    PS  Makes you wonder how helpful support is when the usernames "Frustrated," "really frustrated," and "Help!!!!" are all taken...lol

    HeyStupid wrote:
    how do I merge two valid, purchased iTunes accounts into one so all my music is in same account?
    You cannot. iTunes pruchases remian tied to the account they were purchased with.
    I just got a new iPad and set up second iTunes account,
    Why?
    Remove your info from new account, update old account as needed and use that.

  • Combine Columns From Separate Arrays Into One Formatted Table

    What I'm trying to do is make two WMI queries with 2 different classes for a list of machines and then patch the columns together into one single array that is formatted as a table with columns and rows. I seem to keep banging my head against the wall and
    I can't help but feel that the answer is simple. I can certainly create an array that contains all 3 columns (such as in the commented out part) but no matter which angle I go at it, it always seems to end up as all the data in one single row in each column
    rather than a nicely formatted table. I've even tried constructing separate custom objects and adding the different objects to the array but that's obviously not working. Below is the code of the last thing I tried. I need someone to bash it to death and tell
    me the (most likely obvious) thing that I'm doing wrong. Thanks!
    $failedos = @()
    $failedcs = @()
    $ccs = get-adcomputer -property operatingsystem -filter {name -like "*-CC*"} | select name | sort name
    $cs = foreach ($cc in $ccs){$cc.name | % {if ($c=get-wmiobject -computername $cc.name -class win32_computersystem -ErrorAction SilentlyContinue){$c | select @{Name="Name";Expression={$_.Name}}, @{Name="Model";Expression={$_.Model}}} else {$failedcs += "$_"}}}
    $os = foreach ($cc in $ccs){$cc.name | % {if ($o=get-wmiobject -computername $cc.name -class win32_operatingsystem -ErrorAction SilentlyContinue){$o | select @{Name="OperatingSystem";Expression={$_.caption}}} else {$failedos += "$_"}}}
    #[array]$osprops = @{'Name'=$cs.Name;'Model'=$cs.Model;'OperatingSystem'=$os.OperatingSystem}
    $result = @()
    Foreach ($Line in $cs) {
    $MyCustomObject = New-Object -TypeName PSObject
    Add-Member -InputObject $MyCustomObject -MemberType NoteProperty -Name "Name" -Value $Line.name -Force
    Add-Member -InputObject $MyCustomObject -MemberType NoteProperty -Name "Model" -Value $Line.Model -Force
    $result += $MyCustomObject
    foreach ($Line2 in $os) {
    $MyCustomObject2 = New-Object -TypeName PSObject
    Add-Member -InputObject $MyCustomObject2 -MemberType NoteProperty -Name "OperatingSystem" -Value $Line2.OperatingSystem -Force
    $result += $MyCustomObject2

    Any help?
    $ccs = get-adcomputer -property operatingsystem -filter {name -like "*-CC*"} |
    select -ExpandProperty name | sort
    $Result =
    Foreach ($CC in $CCs)
    $Object =
    New-Object PSObject -Property @{ Name = $CC
    Model = 'Failed'
    OperatingSystem = 'Failed'
    Try {
    $Object.Model =
    get-wmiobject -computername $CC -class win32_computersystem -ErrorAction Stop |
    select -ExpandProperty Model
    $Object.OperatingSystem =
    get-wmiobject -computername $CC -class win32_operatingsystem -ErrorAction Stop |
    select -ExpandProperty Caption
    Catch{}
    Finally { $Object }
    [string](0..33|%{[char][int](46+("686552495351636652556262185355647068516270555358646562655775 0645570").substring(($_*2),2))})-replace " "

  • Combine CSV columns from multiple sources into one

    Hi, 
    I am trying to import column from one CSV file and output it into additional columns on a Get-MailboxStatistics | Export-CSV command. The issue with the script I have created is that when use an Expression to create the new column it outputs all of the items
    in the column from the import CSV into one row. See script below, I have highlighted the expressions that are not working.
    Any assistance would be appreciated. 
    [Array]$Global:NotesMailSizeMaster = (Import-Csv c:\usermigration.csv).MailSizeMaster
    [Array]$Global:NotesMailSizeRefresh = (Import-Csv c:\usermigration.csv).MailSizeRefresh
    [Array]$Global:UserAlias = (Import-Csv c:\usermigration.csv).Alias
    if (!(Get-PSSnapin |
    Where-Object { $_.name -eq "Microsoft.Exchange.Management.PowerShell.Admin" }))
    ADD-PSSnapin Microsoft.Exchange.Management.PowerShell.Admin
    $Output = ForEach ($Alias in $UserAlias)
    { Get-MailboxStatistics $Alias | select-object DisplayName, ServerName, StorageGroupName, Database, @{ Name = "TotalItemSize"; expression = { $_.TotalItemSize.Value.ToMB() } },
    @{ Name = "NotesMailSize(PreRefresh)"; expression = { $NotesMailSizeMaster } }, @{
    Name = "NotesMailSize(PostRefresh)"; expression = { $NotesMailSizeRefresh }
    $filename = (Get-Date).ToString("yyyyMMdd")
    $Output | export-csv -Path c:\"$filename-mailboxstats.csv" -NoTypeInformation

    There's a lot wrong with this script:
    1.  You're importing the same file 3x; you should import one and reference the things you need out of it.
    2.  If the CSV has more than one row in it, your .notation you're using to access the MailSizeMaster, MailSizeRefresh, and Alias properties is used incorrectly.  If you are trying to reference each of those properties from an array of different entries,
    the proper way would be:
    $Import = @(Import-Csv C:\usermigration.csv)
    $MailSizeMaster = $Import | Select-Object MailSizeMaster
    OR
    $MailSizeMaster = $Import | Select-Object -Expand MailSizeMaster
    ...the "OR" is not PowerShell. 
    3.  I don't know if you can concatenate different objects with the select-object cmdlet like you are.  However, what you could do is create a custom object to load the values into and then output that object:
    $filename = (Get-Date).ToString("yyyyMMdd")
    foreach ($item in $Import) {
    $MS = Get-MailboxStatistics $item.Alias
    New-Object PSObject -Property @{
    'DisplayName' = $MS.DisplayName
    'ServerName' = $MS.ServerName
    'StorageGroupName' = $MS.StorageGroup
    'Database' = $MS.Database
    'NotesMailSizePre' = $item.MailSizeMaster
    'NotesMailSizePost' = $item.MailSizeRefresh
    } | Select-Object DisplayName,ServerName,StorageGroupName,Database,NotesMailSizePre,NotesMailSizePost | Export-Csv -NoTypeInformation "C:\$($filename)-mailboxstats.csv"

  • Merging multiples of the same photo into one

    I remember reading a couple tutorials on how to do this weeks ago, but now i cannot seem to remember what to search for to find a tutorial on this.
    I multiple photos, its the same location (tripod) with me in a different position in each frame. I want to merge each frame into one picture so in one picture there are multiples of myself in different positions.
    thanks!

    You'll have to use File->Scripts->Load Files into Stack to load all the images into a single document, each on it's own layer, select all the layers and go to Edit->Auto-Align Layers. If all went well then you should be able to achieve your effect using a couple of simple layer masks

  • How to merge two pages of a PDF into one

    How do I merge two pages (within the same PDF file) into one page?  For example, I have a scanned 3x5 card; the front of the card is on page one and the back of the card is on page two.  How do I merge them so the front and back of the card is on the same page?  Thanks!

    Phillip,
    It works well because InDesign is highly reliable for placing PDF files (you can even choose which layer):
    And it uses the common PDF Export presets for the Creative Suite. I've used it very reliably to place ads saved as PDF, and including them in a program guide, then exporting the entire project as one PDF file.

  • How do I convert/merge multiple files (word and PDF) into one PDF?

    I have multiple word docs and PDF files that I need to merge into one file.  How do I do that?

    You should be able to do it in the image processor.
    File > Scripts > Image Processor
    If it doesn't have the options you want, then make an action using "Save for Web", then run the action on a batch of files using
    File > automate > batch
    Select your action from the dropdown menu.

  • Iphoto upgrade merged all of my pix together into one giant folder!

    i upgraded iphoto to iphoto '11.  all of my folders of pix have now been merged into one giant folder.  no longer listing my events separately etc.  how do i repair this? i don't want 10,000 pix from years jammed together.  thank you.

    Events menu - Autosplit selected Event
    or
    Restore from backup.
    Regards
    TD

  • How merge query results from joined table into one additional column

    <code>
    Here is example
    TABLE A:
    id | value
    1 | a
    2 | a
    3 | b
    TABLE B
    id | id_in_table_a | value
    1 | 1 | d
    2 | 1 | e
    3 | 2 | g
    </code>
    this select should get all columns from table A where value = 'a' and all values related to this record from B merged to one column separated for example with pipe, so the output should looks like this
    <code>
    id | value | merged_column
    1 | a | d|e
    2 | a | g
    </code>
    thanks for help

    If you are on 10g, you can use this:
    SQL> create table a
      2  as
      3  select 1 id, 'a' value from dual union all
      4  select 2, 'a' from dual union all
      5  select 3, 'b' from dual
      6  /
    Tabel is aangemaakt.
    SQL> create table b
      2  as
      3  select 1 id, 1 id_in_table_a, 'd' value from dual union all
      4  select 2, 1, 'e' from dual union all
      5  select 3, 2, 'g' from dual
      6  /
    Tabel is aangemaakt.
    SQL> select id
      2       , value
      3       , rtrim(v,'|') merged_column
      4    from ( select id
      5                , value
      6                , v
      7                , rn
      8             from a
      9                , b
    10            where a.id = b.id_in_table_a
    11            model
    12                  partition by (a.id)
    13                  dimension by (row_number() over (partition by a.id order by b.id) rn)
    14                  measures (a.value, cast(b.value as varchar2(20)) v)
    15                  rules
    16                  ( v[any] order by rn desc = v[cv()] || '|' || v[cv()+1]
    17                  )
    18         )
    19   where rn = 1
    20  /
       ID VALUE MERGED_COLUMN
        1 a     d|e
        2 a     g
    2 rijen zijn geselecteerd.Regards,
    Rob.

  • How do I merge events - not just combining pictures into one event?

    I have a iPhoto 09 and haven't upgraded yet. I have a bunch of events and it's hard to get through all of them. Can I combine the events while retaining the seperate events? Sort of an event within an event; not adding all the pictures from one event into anoher event and losing the deliniation.
    Or, can I archive them somewhere so they don't appear in my Event list?

    Can I combine the events while retaining the seperate events?
    No. If you merger events you'll end up with just one event representing those that you merged. 
    To make selected events invisible in the Events mode do the following:
    1 - select the events and double click on one of them to open all in the same window.
    2 - type Command+A to select all photos.
    3 - right or Control-click on any of the selected photos.
    4 - click on Hide in the window that comes up:
    That will hid those events from the list of other events in the Events mode and wherever else those photos are, i.e. albums, books, etc.
    To makes the Events visible again use the View ➙ Hidden Photos menu option:
    To make them permanently viewable you'll need to select those events and follow steps 1-4 above but click on the Show button this time.
    OT

  • Merge data from multiple DSO's into one DSO

    Hi,
    I want to transfer data from 4 different 1st level DSO's to a single 2nd level DSO. I have 8 key fields in the 2nd level DSO, 2 from each 1st Level DSO. The 1st level DSO's are Sales Orders, Deliveries, Sales Invoices and Financial Invoices. The goal of this is to create a 2nd level DSO for Sales KPI so the data has to be consolidated so it's not supposed to contain all the records from each DSO but it has to consolidate them somehow.
    example:
    R/3     Order           0000012901     item 10          created              05/08/2008
         Delivery              0080015843     item 10          created              05/08/2008
         Invoice          0090036871     item 10          created          05/08/2008
         FI invoice      1400000135     item 1          created          05/08/2008
    BW     
    F1             F2     F3                     F4     F5                     F6     F7                     F8     F9             F10       F11        F12       F13
    12901     10                                                                                   5/08                    
    12901     10     80015843     10                                                         5/08      5/08               
    12901     10     80015843     10     90036871     10                               5/08      5/08      5/08          
    12901     10     80015843     10     90036871     10     1400000135     1     5/08      5/08             5/08              5/08     -

    Hi,
    I think your second level DSO should have only 2 key fields: Sales Order no and Item. The other fields will get update in this case. Hope this helps.
    Thanks and Regards
    Subray Hegde

  • Possible to merge separate Windows user account libraries into one?

    Friend of mine has a work laptop with separate Windows accts on it - one for work, one personal. She has purchased music *with the same iTunes account*, but some songs are in the work account, some in the personal. Is it possible to rebuild the library in one account or the other to include the songs purchased on the other account? If so, how? Thanks

    One method is if she has an iPod, she can plug the iPod into either library and iTunes will find the purchased tracks and ask if you want to transfer them into the current library.
    Without an iPod, the files themselves can be copied out of either account's iTunes Music folder structure onto CDRs, USB thumb drive, or since it is on the same computer to a common shared folder. You can then add them to the other account's library. Since they are both authorized to the same account, they should play fine.
    Patrick

  • How do you merge multiple songs into one album?

    When I added a downloaded album to iTunes, it created one album for each track. How do I merge all of these albums/tracks into one album?

    Some albums will fracture into a million pieces if you have different artist names. How the columns are sorted can effect this.
    If it is a multiple artists on one album select 'Compilation' in the options section for all of the songs on the album. 
    NOTE: You need to have multiple items selected to set this flag!

  • How do I MERGE several "ghost" copies of my user-folder back into one single identity?

    This is my current storage directory for THUNDERBIRD: (on my nearly brand-new PC workstation!)
    C:\Users\davidlew\AppData\Roaming\Thunderbird\Profiles\409424bt.default\Mail\pop.shaw.ca
    All of it's folder-icons in the left-most column are mute/empty/unresponsive...
    Others that I would like to "fold in" to this identity are located in analogous file-paths
    such as:
    niser0eab.Davidlew
    and
    zf1bouv3.default
    --inside each of these three setups
    such as:
    C:\Users\davidlew\AppData\Roaming\Thunderbird\Profiles\409424bt.default\Mail\pop.shaw.ca
    and
    C:\Users\davidlew\AppData\Roaming\Thunderbird\Profiles\zf1bouv3.default\
    and
    C:\Users\davidlew\AppData\Roaming\Thunderbird\Profiles\niser0eab.Davidlew.default\Mail\pop.shaw.ca
    .....each of these three setups contain the "same"set(s) of subfolders:
    -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
    panacea.dat
    parent.lock
    permissions.sqlite
    persdict.dat
    places.sqlite
    pluginreg.dat
    prefs.js
    saved-telemetry-pings
    search.json
    secmod.db
    sessionCheckpoints.json
    signons.sqlite
    Telemetry.ShutdownTime.txt
    times.json
    training.dat
    traits.dat
    virtualFolders.dat
    webappsstore.sqlite
    xpunge-extension-prefmigration-existing-new-prefs.txt
    xpunge-extension-prefmigration-old-prefs.txt
    -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
    ---However, NONE of these message-organizing sub-folders ACTIVELY show up within Thunderbird...
    ALL of them seem to show "ghost" copies of the folders and subafolder---in the left-column folder-list view window
    but they are mute and unresponsive, and do not SHOW the .emlx messages contained within them....
    Drilling into the PC's filing-system (Window Explorer, like Apple's FINDER) does show that the indiv. emlx. mail files
    DO exist and ARE readable as plain-text----ugly as hell with header information aond other control characters framing the text-message contents.
    How do I "shuffle together" (merge?) the various user-folders into ONE user folder, without overwriting folders and messages?
    How do I resurrect the functionality of the "ghost" folder icons in the left-most column?
    Such that clicking on a folder with show it's contents, or expand to show it's SUB-folders...
    Please Advise!
    -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
    Best regards,
    David A. Lewis a.k.a. "themacguy"
    [email protected]

    https://addons.mozilla.org/en-US/thunderbird/addon/importexporttools/

  • Merging several seperate creative cloud accounts to One Team account?

    Hi there,
    I run a media company, and until now our staff is working with creative cloud accounts that are specified to each employee.
    To save some money I want to start up a Team membership. But off course I dont want to continue paying for single accounts our staff use for the moment.
    Is there a way to merge the single creative cloud accounts into one Team account?
    All the best,
    Thomas,
    Les Creatives Stockholm

    Hi Thomas,
    Once you will purchase Creative Cloud Teams for the employees then you can cancel the Creative Cloud membership for individual by contacting Adobe Customer Support and ask them to cancel the individual memberships.
    You may also contact our support here http://adobe.ly/yxj0t6
    Thanks!
    Gurleen

Maybe you are looking for

  • Can't access files on cd

    When inserted into the drive the cd:s mount fine and I can see what files there are, but when I try to view for example an .avi file, mplayer says "seek failed", and when trying to copy files to hard drive it says "Could not read file". Dunno if it m

  • How Can I boot from USB - Portege A200

    Hi, I've got an Portege A200 which is only a couple of years old but the hard drive no longer works. Initially I thought this was due to corrupting the boot record on the drive but after attempting to replace the hard drive (with two different drives

  • How to Edit RAWs first in LR and cto ontinue in RAW in PS-CS2

    After having edited RAW photographs in LR I would like to be able to continue my editing in RAW in PS-CS2. However when I go from LR to PS-CS2 with "edit in Photoshop.exe" it opens a PSD file and therefore I can not continue in PS-CS2 RAW. What can I

  • Portal Users Passwords expiring

    In 9.02 it seems my portal users passwords seem to expire for no reason. When it happens, I have to go in and manually re-set their passwords. Is this a bug or is there some place to control this.

  • Tables for PO Release Strategy

    Hi, could you send me the list of tables for "Tables for PO Release Strategy". Rgs, Priya.