Forum Discussion
dieterbe_vdb
2 years agoFrequent Visitor
Filter issuev - Context transition
Hello, I have an issue with a measure not behaving as I would expect. Fact Table: Date MRR Activated Deactivated 1/01/2023 45 1 0 1/02/2023 36 0 1 1/03/2023 75 1 0 ...
amitchandak
Super User
2 years agoAVERAGEX(VALUES('Date'[YYYY-MM]), [New MRR]) will sum up to the month level, and after that, it will calculate the average. It seems to be working correctly to me.
AVERAGEX(VALUES('Date'[Date]), [New MRR]) sums up to the date level and then calculates the average. Check the file; it is showing the same as the month because you only have data for three dates.