Forum Discussion
Funkmiester
8 years agoAdvocate I
cross filtering columns in the same table
This is so basic apologies, I'm missing something. I have a fact table containing organisations, they are grouped in a separate groups, there are mutliple entries for each organisation in the tab...
- 8 years ago
you will need second table for this - otherwise filter you put on Org Name will overwrite one coming from the Org Group, tables shouldn't have joins
new table (named Slicer)Org Name Org Group Org1 1 Org2 1 Org3 2 Org4 2 Org5 3 Org6 3 Org7 4 Org8 4 Measure = CALCULATE( SUM('Table1'[Score]), INTERSECT(ALL('Table1'[Org Group]),VALUES(Slicer[Org Group])) )
Stachu
8 years agoCommunity Champion
the 'Org Name' in the chart should come from the Table, not the Slicer, that should give the proper sum - is this the case?
so - for filtering you use Slicer[Org Name], in the visual you use Table[Org Name]
EDIT - spelling
Funkmiester
8 years agoAdvocate I
It was a PICNIC error (problem in chair, not computer)
Your solution worked perfectly but I had a filter on the bar graph visual from before that meant it didn't display properly. Many, thanks,