Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I have the following data set being pulled in from a SQL query...
Table1
a | b | c | d | |
Symbol1 | 5 | 4 | 8 | 13 |
Symbol2 | 15 | 2 | 65 | 10 |
Symbol3 | 1 | 1 | 5 | 48 |
I would like to create a chart that has the column headers (a,b,c,d) as the x-values (in the same order as the table) and the y-axis represent their correpsonding values. For some reason I am having difficulty doing this. I would appreciate anyone's input.
Thanks
a | b | c | d | |
Symbol1 | 5 | 4 | 8 | 13 |
Symbol2 | 15 | 2 | 65 | 10 |
Symbol3 | 1 | 1 | 5 | 48 |
Not sure what you want. Maybe the CrossTable function is what you're looking for. See attached example.
Not sure what you want. Maybe the CrossTable function is what you're looking for. See attached example.
Thanks for the reply. The CrossTable function is exactly what I was looking for. Also, parallel coordinate charting is another solution.