Forum Discussion
Anonymous
6 years agoNot applicable
Help Creating a Cost Savings Visualization
Hello, I'm trying to make a visualization from the following table: Month Cost Center Charge Feb 101 $20. Feb 102 $23 Mar 101 20 Mar 102 25 April 101 15 April 10...
- Anonymous6 years ago
YAY!!! I had a coworker who helped me solve this one:
February Cost = IF([Total Costs]=BLANK(),BLANK(),SUMX(VALUES(Date),CALCULATE([Total Costs],FILTER(ALL(Date),Date[Month]=DATE(2020,02,01)))))
!!! Thank you again for trying to help out, though amit and v-easonof!
Anonymous
6 years agoNot applicable
v-easonf-msft Essentially, a
February Costs = Calculate('table'[costs],'table'[month]=date(2020,02,01))
DAX is returning the correct result, but it's only giving me the value for February and I want it to translate down to the rest of the months for comparison/forecasting purposes, if that makes sense.
Anonymous
6 years agoNot applicable
YAY!!! I had a coworker who helped me solve this one:
February Cost = IF([Total Costs]=BLANK(),BLANK(),SUMX(VALUES(Date),CALCULATE([Total Costs],FILTER(ALL(Date),Date[Month]=DATE(2020,02,01)))))
!!! Thank you again for trying to help out, though amit and v-easonof!
!!! Thank you again for trying to help out, though amit and v-easonof!