Forum Discussion
How can I make string values to appear on pivot table?
Hi, I am now trying to make the date records into table format.
But the data column contains both numeric and string values
For example, if you have a dataset as below,
Key RowID ColID Data
Aa 1 1 100
Aa 1 2 200
Aa 2 1 300
Aa 2 2 400
Aa 3 1 500
Aa 3 2 600
Bb 1 1 A
Bb 1 2 B
Bb 2 1 C
Bb 2 2 D
Bb 3 1 E
Bb 3 2 F
I want to make a pivot table looking like this :
FIlter : Choose Aa or Bb from Key
Suppose Aa is selected,
RowID ColID
1 2
1 100 200
2 300 400
3 500 600
Suppose Bb is selected
RowID ColID
1 2
1 A B
2 C D
3 E F
But if i want to make a pivot table, I cannot make string values shown on the table...
The only way I have is to divide the full dataset into two different dataset by KEY, and to use Matrix on dashboard for string data.
Can I find any other way without dividng the full dataset?
5 Replies
- Greg_DecklerCommunity Champion
I'm not sure how you are doing that with a Matrix visualization honestly, if you try to use a Text field in the Value for a Matrix, it tends to want to count it versus giving you the text.
- greggybResident Rockstar
A measure can return a text datatype. If you can write a measure that evaluates to a single text value appropriately, it should work in a matrix.
- keondoparkRegular Visitor
Can you explain in detail??
- keondoparkRegular Visitor
Maybe I made a mistake in writing.
I used Matrix for the numeric data, and Table for string data.
As you said, it automatically counts.