The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends September 15. Request your voucher.
Hi,
Im new to DAX and Im having trouble using the calculate formula to filter dates. This is what i did:
1. Found the beginning of the latest month using this formula:
bMonth:=EOMONTH ( MAX ( fTransactions[Emision] ), -1 ) + 1
2. Use calculate function to filter everything after that date:
CALCULATE ( [Units], FILTER ( dDate, dDate[Date] >= [bMonth] ) )
I know the error is in step 1 because if I replace [bMonth] for the DATE formula, the filter works fine.
I dont understand what im doing wrong, can somenone please help?
Solved! Go to Solution.
Well... aparently I just solved this by joining step one and two togehter:
CALCULATE ( [Units], FILTER ( dDate, dDate[Date] >= EOMONTH ( MAX ( fTransactions[Emision] ), -1 ) + 1 ) )
I dont know why that makes a difference but there it is.
Well... aparently I just solved this by joining step one and two togehter:
CALCULATE ( [Units], FILTER ( dDate, dDate[Date] >= EOMONTH ( MAX ( fTransactions[Emision] ), -1 ) + 1 ) )
I dont know why that makes a difference but there it is.
User | Count |
---|---|
15 | |
12 | |
8 | |
7 | |
7 |
User | Count |
---|---|
24 | |
20 | |
12 | |
10 | |
7 |