Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi, I am struggling a few days now with a simple problem.
I am trying to make a radar chart with a simple table like this :
Name A B C
Alice 3 5 7
Bob 8 9 4
I am using an extension radar chart and the first input dimensions are the names.
The second one must be the Features so A,B and C , but I don't know how I can make a new dimension that references to those...
I hope I stated my question clear enough,
and thanks to everybody taking the time helping me.
Hi Cuartares,
Try to unpivot your data:
From:
Name | A | B | C |
Alice | 3 | 5 | 7 |
Bob | 8 | 9 | 4 |
To:
Name | Dimension | Value |
Alice | A | 3 |
Alice | B | 5 |
Alice | C | 7 |
Bob | A | 8 |
Bob | B | 9 |
Bob | C | 4 |
Now you can link information, your dimensions to the Dimension field.
Jordy
Climber
Hi Cuartares,
Try to unpivot your data:
From:
Name | A | B | C |
Alice | 3 | 5 | 7 |
Bob | 8 | 9 | 4 |
To:
Name | Dimension | Value |
Alice | A | 3 |
Alice | B | 5 |
Alice | C | 7 |
Bob | A | 8 |
Bob | B | 9 |
Bob | C | 4 |
Now you can link information, your dimensions to the Dimension field.
Jordy
Climber