The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
Hi,
I would like to know how to translade my questions to power BI. I need to count some values from a table filtering by the current year and the current month. My table has this info:
LOGTABLE
YEAR: text(2018, 2017, etc.)
MONTH: text (01, 02, 03, etc.)
TOTAL: integer
It should be something like: "count TOTAL where MONTH = this.month and YEAR = this.year"
Any suggestion?
Thanks!
Solved! Go to Solution.
Hi @mdelasheras
Measure = CALCULATE(SUM('LOGTABLE (2)'[TOTAL]),FILTER('LOGTABLE (2)',[YEAR]=FORMAT(YEAR(NOW()),"General Number")&&[MONTH]=FORMAT(MONTH(NOW()),"General Number")))
Best Regards
Maggie
Hi @mdelasheras
Measure = CALCULATE(SUM('LOGTABLE (2)'[TOTAL]),FILTER('LOGTABLE (2)',[YEAR]=FORMAT(YEAR(NOW()),"General Number")&&[MONTH]=FORMAT(MONTH(NOW()),"General Number")))
Best Regards
Maggie