Forum Discussion
trailmax
8 years agoFrequent Visitor
Multiple columns join/goup
Hi I'm new to PowerBI, though I have developer background. I'm stuck now on a report that has 2 columns: one with vehicles count by type, location and month and another with days in service of ve...
- 8 years ago
Hi trailmax,
Please try this measure:
sum measure = CALCULATE ( SUM ( Service[ServiceLength] ), FILTER ( ALLSELECTED ( Service ), Service[Date] = SELECTEDVALUE ( FleetCount[Date] ) && Service[Location] = SELECTEDVALUE ( FleetCount[Location] ) && Service[Type] = SELECTEDVALUE ( FleetCount[Type] ) ) )Best regards,
Yuliana Gu
nirvana_moksh
Impactful Individual
8 years agohttps://www.dropbox.com/s/pxfgq3c7bkmj6c6/Sample.pbix?dl=0
I created a group by and sum by service length table in the file in there, also i created a reference table and hopefully that should help you achieve your solution.