Forum Discussion
DLJ
6 years agoFrequent Visitor
Calculate Total Expenses Excluding Current Month
Hi All, I want to show a bar chart comparing month by month 2 different measures: a) Total actual expenses (from the origin to the last month extracted -but excluding the current month-) b) Tot...
- Anonymous6 years ago
you could create a custom column like this:
IsCurrentMonth = IF ( YEAR ( Table[Date] ) = YEAR ( TODAY () ) && MONTH ( Table[Date] ) = MONTH ( TODAY () ), "Yes", "No" )and then filter the visual on this column -> IsCurrentMonth = "No"
Anonymous
6 years agoNot applicable
you could create a custom column like this:
IsCurrentMonth =
IF (
YEAR ( Table[Date] ) = YEAR ( TODAY () )
&& MONTH ( Table[Date] ) = MONTH ( TODAY () ),
"Yes",
"No"
)
and then filter the visual on this column -> IsCurrentMonth = "No"
DLJ
6 years agoFrequent Visitor
Thank you very much. It works perfectly!