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 August 31st. Request your voucher.
Hello Everyone,
I am trying to find a dax function for Sumif that is being done in excel. See the attached screenshot.
If the columns M, L and I matches then i need to create a column that sums Column P.
Solved! Go to Solution.
Don't see the screen shot but SUMIF in DAX is generally one of these forms:
SUMX(FILTER('Table',[Column]="Something"),[Value])
or
CALCULATE(SUM([Value]),[Column]="Something")
Don't see the screen shot but SUMIF in DAX is generally one of these forms:
SUMX(FILTER('Table',[Column]="Something"),[Value])
or
CALCULATE(SUM([Value]),[Column]="Something")
Adding the screenshot. Thank you for your response. I tried sum if equivalent dax but i guess i am not using it correctly as the 3 values for P column are not adding up in column R
User | Count |
---|---|
27 | |
12 | |
8 | |
8 | |
5 |
User | Count |
---|---|
32 | |
15 | |
12 | |
12 | |
7 |