Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hey,
unfortunately I fail creating such a visually looking table:
Data available:
| Companyname | Year | Question1 | Question2 | Question 3 |
|---|---|---|---|---|
| aaa | 2014 | 325 | .. | |
| aaa | 2013 | 321 | ||
| aaa | 2012 | 231 | ||
| bbb | 2014 | 111 | ||
| bbb | 2013 | 222 | ||
| bbb | 2012 | 333 | ... |
And here is the basic idea what to calculate and so on:
Anyway, no idea how to create such a table that looks like the above...
Many thanks!
You can transform your excel table using CROSSTABLE into a straight table to match the data model Rob has used:
CrossTable (Question, Answer,2)
LOAD Year,
Companyname,
[Question 1],
[Question 2],
[Question 3],
[Question 4]
FROM
(ooxml, embedded labels, table is Tabelle1)
WHERE Len(trim(Companyname));
The above screenshot is probably just showing a plain pivot table chart with two dimensions like Category and SubCategory, an expression to show a percentage and next to an expression showing a linear gauge (using display option 'Linear gauge' on expression tab), then two other expressions for change and total share.
You can see a similar example in Rob Wunderlich blog, survey table example:
Pivot Table Grids | Qlikview Cookbook
If you need more help, you would need to post some sample data, best in a small sample QVW.
Hope this helps,
Stefan
Thanks!
I wanna use the Survey Results grid from Rob Wunderlich.
The issue is that my data set is structured differently and I am not able to configure the table dimensions to visualize the above sample data as it is in Wunderlichs example.
Could anyone try that?
Could you post a small sample QVW?
I don´t have any other sample than the one of Rob Wunderlich.
I am talking about a sample of your data set.
Find attached some sample data.
You can transform your excel table using CROSSTABLE into a straight table to match the data model Rob has used:
CrossTable (Question, Answer,2)
LOAD Year,
Companyname,
[Question 1],
[Question 2],
[Question 3],
[Question 4]
FROM
(ooxml, embedded labels, table is Tabelle1)
WHERE Len(trim(Companyname));