Forum Discussion
Anonymous
7 years agoNot applicable
Cumulative Distinct Count For selected Dates
Hi, I have a table that has property listings everyday, I have a measure that already gets CUMULATIVE count of number of active properties on whole table/site on Last Day of month. I need to create...
- Anonymous7 years agoThis measure was built to consider aggregate only when expirydate is null. But source data didn’t have anything null, after Investigation I found out ETL was wrong. Now this measure is working as expected. Thanks for the help
v-yulgu-msft
7 years agoMicrosoft Employee
Hi Anonymous ,
Not very clear about the logic you have built for your measure Activity Listing. Does replacing MAX with MIN in above measure meet your requirement?
FILTER
(
ALL('Listing History'[ExpiryDate])
,[ExpiryDate] > MIN('Date Reported'[DateValue])
)
,FILTER
(
ALL('Listing History'[EffectiveEndDate])
,[EffectiveEndDate] >= MIN('Date Reported'[DateValue])
)
Would you please illustrate your scneario with some simplified dummy data? And show us desired result.
Regards,
Yuliana Gu
Anonymous
7 years agoNot applicable
This measure was built to consider aggregate only when expirydate is null. But source data didn’t have anything null, after Investigation I found out ETL was wrong. Now this measure is working as expected. Thanks for the help