Forum Discussion
david_blabla
6 years agoFrequent Visitor
Count rows by date on unconnected sources
Hi there! I have two unconnected sources in my BI file: Activities Finished on 1 1.1.2020 2 1.1.2020 3 2.1.2020 4 2.1.2020 5 3.1.2020 And a calendar including all ...
- 6 years ago
Hi david_blabla ,
You only need to modify your dax expression as below:
Cumulative Finished = CALCULATE(COUNT(activities[actual_finished]);FILTER(ALLSELECTED(activities);activities[actual_finished] =selectedvalue('Calendar'[Date])))Then you can compare the values per day.
Best Regards,
Kelly
v-kelly-msft
Community Support
6 years agoHi david_blabla ,
You only need to modify your dax expression as below:
Cumulative Finished = CALCULATE(COUNT(activities[actual_finished]);FILTER(ALLSELECTED(activities);activities[actual_finished] =selectedvalue('Calendar'[Date])))
Then you can compare the values per day.
Best Regards,
Kelly
david_blabla
6 years agoFrequent Visitor
Awesome, now I have a table that shows the same values for my "column in calendar workaround" as well as your dax statement.
For some reason tho the bar chart does show values for my "column in calendar workaround" but not anything if I include the dax statement.
Any idea why?