Skip to main content
Announcements
SYSTEM MAINTENANCE: Thurs., Sept. 19, 1 AM ET, Platform will be unavailable for approx. 60 minutes.
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Crosstable Line Chart

Hello,

Looking for some guidance here, I'd like to create a line chart off of a crosstable so as to make my headers selectable: (if this isn't the best method please advise!). So below is an example of my data, i have dates corresponding to values for a number of different projects. I initially loaded this in as a table regularly (no crosstable) and set my dimension to date and had 3 expressions for my projects, however I discovered that when I clicked on a particular project in list view it didn't isolate that project on my line chart. I figured by loading it once again, but this time as a cross table it would solve my problem - but again unfortunately no luck.

DateProject1Project2Project3
01/01/2014200300250
01/08/2014150400100
01/15/2014165320155

Looking for any help.

Cheers,

Ahmad

1 Solution

Accepted Solutions
MK_QSL
MVP
MVP

CrossTable(Project, Value)

Load

  Date(Date#(Date,'MM/DD/YYYY')) as Date,

  Project1,

  Project2,

  Project3

Inline

[

  Date, Project1, Project2, Project3

  01/01/2014, 200, 300, 250

  01/08/2014, 150, 400, 100

  01/15/2014, 165, 320, 155

];

Create a Line Chart

Dimension

Date

Project

Expression

SUM(Value)

View solution in original post

3 Replies
MK_QSL
MVP
MVP

CrossTable(Project, Value)

Load

  Date(Date#(Date,'MM/DD/YYYY')) as Date,

  Project1,

  Project2,

  Project3

Inline

[

  Date, Project1, Project2, Project3

  01/01/2014, 200, 300, 250

  01/08/2014, 150, 400, 100

  01/15/2014, 165, 320, 155

];

Create a Line Chart

Dimension

Date

Project

Expression

SUM(Value)

Not applicable
Author

thank you !!!!

MK_QSL
MVP
MVP

IF this is working for you, kindly close the thread by selecting correct/helpful answer...

Thanks