Forum Discussion
Bridgewater
8 years agoFrequent Visitor
Dynamic Group Data Working with Date Slider
Hi all, In a previous post (click here) You all helped me combine sales teams with their respective subteams. I now need to take that same approach and have those sales numbers work with a Date s...
- 8 years ago
Hi Bridgewater
Try this calculated Table.
Then add a Date Slider using Date Column from this Calculated Table
New Table = VAR TeamTable = SUMMARIZE ( TableName, TableName[Team], TableName[Date], "Amount", SUM ( TableName[Amount] ) ) VAR SubTeamTable = FILTER ( SUMMARIZE ( TableName, TableName[Sub Team], TableName[Date], "Amount", SUM ( TableName[Amount] ) ), TableName[Sub Team] <> BLANK () ) RETURN UNION ( TeamTable, SubTeamTable )
Bridgewater
8 years agoFrequent Visitor
Thank you Zubair_Muhammad, the sample data worked out perfectly.
There is still as issue whenever I plug in the real data. I am getting this error:
'The expression refers to multiple columns. Multiple columns cannot be converted to a scalar value.'
I thought I had plugged in everything exactly as you did with your calculated table. Do you have any insight as to why this error is occurring?
Bridgewater
8 years agoFrequent Visitor