Forum Discussion
New Table for another one with Count
- Anonymous9 years ago
Please try the following
1. After the intial load of the table, right click on the table and select Edit Query
2. This will take you to QueryEditor
3. Go to the transform tab
4. Select the three columns of the table Opened atStartDate,OpenedThisMonth, ClosedThisMonth
5. Choose the icon a2 UnpivotColumn from the AnyColumn area
6. The Output of your intial table will be like
7. Click on File --> Close and Apply
8. Now create the newTable as
NewTable = Summarize( OpenClosed,[Attribute],"Counts",Calculate( Countrows(OpenClosed),
OpenClosed[Value] ="Yes" || OpenClosed[Value] ="Opened" ) )
9. When you plot the columns from the NewTable in a Table Report Visual, the output will be as you desired.
If this solves your issue please accept this as a solution and also give KUDOS.
Cheers
CheenuSing
Please try the following
1. After the intial load of the table, right click on the table and select Edit Query
2. This will take you to QueryEditor
3. Go to the transform tab
4. Select the three columns of the table Opened atStartDate,OpenedThisMonth, ClosedThisMonth
5. Choose the icon a2 UnpivotColumn from the AnyColumn area
6. The Output of your intial table will be like
7. Click on File --> Close and Apply
8. Now create the newTable as
NewTable = Summarize( OpenClosed,[Attribute],"Counts",Calculate( Countrows(OpenClosed),
OpenClosed[Value] ="Yes" || OpenClosed[Value] ="Opened" ) )
9. When you plot the columns from the NewTable in a Table Report Visual, the output will be as you desired.
If this solves your issue please accept this as a solution and also give KUDOS.
Cheers
CheenuSing
- larabraghetti9 years agoHelper II
Anonymous Thank you!
The problem is that the column used in my first table are Calculated Column.
There is no possibility to have these columns in the queryeditor. (only if I add the columns from there I think...)- Anonymous9 years agoNot applicable
See if you can use the concept to derive the final output from the base source table instead of from intermediate table as posted by you.
Cheers
CheenuSing
- Anonymous9 years agoNot applicable
See if you can use the concept to derive the final output from the base source table instead of from intermediate table as posted by you.
Cheers
CheenuSing