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 There,
I am trying to create a CALCULATE DAX formula where I am trying to calculate the whole column (without filters) - calculation of the same column with SELECTEDVALUE
So the outcome would be: Whole column - Column filtered by Slicer = XX Days
The formula us currently as follows
CALCULATE(SUM('Data Set - Leave Liability'[Total Days]), All('Data Set - Leave Liability'[Branch]),'Data Set - Leave Liability'[Branch]="Policy & Trade")
The ALL isn't really required here since you then override the filter context anyway.
CALCULATE(SUM('Data Set - Leave Liability'[Total Days]), 'Data Set - Leave Liability'[Directorate] = SELECTEDVALUE('Directorate List'[Directorate]))
This requires more information - like what the data model looks like, and what the measure definition is for [Total Days].
Read about EVALUATEANDLOG - it is a great tool to validate your formula results.
I am wanting to find the difference between the [Branch] against the [Directorate].
The dataset is around leave days etc so needing a comparison between the two sets
I have tried taking out the ALL though this is still getting the same result
User | Count |
---|---|
65 | |
62 | |
60 | |
53 | |
28 |
User | Count |
---|---|
181 | |
82 | |
67 | |
48 | |
44 |