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.
This is my expression:
CALCULATE (
SUM ( WHourOAI[WCalWorkingHour] ),
FILTER (
WHourOAI,
FORMAT ( WHourOAI[TRANSDATE], "dd MMMM, yyyy" )
> FORMAT ( "13 July, 2015", "dd MMMM, yyyy" )
&& FORMAT ( WHourOAI[TRANSDATE], "dd MMMM, yyyy" )
< FORMAT ( TODAY (), "dd MMMM, yyyy" )
)
)
It's working but not shosing the correct values, If I apply a month filter and check for the sum of feb month it shows only 8 i.e. unique or distinct value. but i want to sum all the values because in my table it contains only 1 record on a single date. How to remove this default filter??
Thanks for your time.
Not entirely sure, but it sounds like you want an ALL clause like:
CALCULATE ( SUM ( WHourOAI[WCalWorkingHour] ), ALL(WHourOAI), FILTER ( WHourOAI, FORMAT ( WHourOAI[TRANSDATE], "dd MMMM, yyyy" ) > FORMAT ( "13 July, 2015", "dd MMMM, yyyy" ) && FORMAT ( WHourOAI[TRANSDATE], "dd MMMM, yyyy" ) < FORMAT ( TODAY (), "dd MMMM, yyyy" ) ) )
Tough to say without sample data and expected output.
User | Count |
---|---|
70 | |
67 | |
62 | |
48 | |
28 |
User | Count |
---|---|
113 | |
77 | |
65 | |
55 | |
43 |