Forum Discussion
VendettaBob
6 years agoHelper II
Count Filtered SUM Measure
Hi, I have data in the following format: Date Reg Distance Miles 20190101 Veh 1 0 20190101 Veh 1 ...
AlB
6 years agoCommunity Champion
Hi VendettaBob
1. Place Table1[Date] in a table visual
2. Place this measure in the visual
Measure = SUMX ( DISTINCT ( Table1[Reg] ), INT ( [Distance Miles] = 0 ) )
Please mark the question solved when done and consider giving kudos if posts are helpful.
Cheers ![]()
VendettaBob
6 years agoHelper II
Hi,
Thanks for this. This would work in a graph with the date on the x axis.
However, I also need this value in a tile. So would need to incorporate the date element into the calc. How would I do this?
Thanks,