Forum Discussion
Morgana_2022
3 years agoHelper I
DAX measures
Hello everybody, i need help on calculating 2 measures in power BI. I have a table with 2 columns: 1 - invoice_date 2 - provided in the invoice_date column there are dates of 2021 and 2022...
- Anonymous3 years ago
Try this
test CY = CALCULATE( sum('sample'[something]), YEAR('sample'[date]) = YEAR(TODAY()))test PY = CALCULATE( sum('sample'[something]), YEAR('sample'[date]) = YEAR(TODAY())-1)
Anonymous
3 years agoNot applicable
Try this
test CY = CALCULATE( sum('sample'[something]), YEAR('sample'[date]) = YEAR(TODAY()))
test PY = CALCULATE( sum('sample'[something]), YEAR('sample'[date]) = YEAR(TODAY())-1)
Morgana_2022
3 years agoHelper I
if I wanted to also calculate the provided of the current month, in an absolute way?
How can I do?