Forum Discussion
Anonymous
5 years agoNot applicable
DAX Calculation : CountX and SUMX
Hi All I am attaching a sample screenshot for the task that I am trying to achieve in power bi The image has both the input and expected output type Please look and let me know if anyone c...
- Anonymous5 years ago
Hi Anonymous ,
Total = SWITCH ( MAX ( 'Table (2)'[Category] ), "Count A", COUNT ( 'Table'[Col A] ), "Sum B", SUM ( 'Table'[Col B] ) )Previous Month = SWITCH ( MAX ( 'Table (2)'[Category] ), "Count A", CALCULATE ( COUNT ( 'Table'[Col A] ), FILTER ( 'Table', DATEDIFF ( 'Table'[DATE], TODAY (), MONTH ) = 0 ) ), "Sum B", CALCULATE ( SUM ( 'Table'[Col B] ), FILTER ( 'Table', DATEDIFF ( 'Table'[DATE], TODAY (), MONTH ) = 0 ) ) )Best Regards,
Stephen Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
amitchandak
Super User
5 years agoAnonymous , have tried time intelligence with date table
example
MTD Sales = CALCULATE(SUM(Sales[Sales Amount]),DATESMTD('Date'[Date]))
last MTD Sales = CALCULATE(SUM(Sales[Sales Amount]),DATESMTD(dateadd('Date'[Date],-1,MONTH)))
diff = [MTD Sales]-[last MTD Sales]
Power BI — Month on Month with or Without Time Intelligence
https://medium.com/@amitchandak.1978/power-bi-mtd-questions-time-intelligence-3-5-64b0b4a4090e
https://www.youtube.com/watch?v=6LUBbvcxtKA