Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Hi All,
I am looking for the Excel equivalent functions for DAX, can someone let me know how we can Implement the below functions in DAX.
Numbervalue
Sumifs
Vlookup
Regards,
Solved! Go to Solution.
@Anonymous
NUMBERVALUE:
To convert text to number, you can use VALUE() function.
SUMIFS:
You can use CALCULATE() and apply filter context. Please refer to this blog: PowerPivot DAX: CALCULATE is a supercharged SUMIF
=CALCULATE(SUM(Table[Amount]),FILTER(Table,Table[Column1] = "A" && Table[Column2] = "B"))
VLOOKUP:
In DAX, it can't evaluate at cell level like VLOOKUP since it can only evaluate on row level. You can use RELATED(), RELATEDTABLE() or LOOKUPVALUE() to achieve similar logic. For more details, please refer to blogs below:
VLOOKUP Functionality in Power Pivot
Regards,
Value() is not working for me where =Numbervalue(reference,",",".") is the equivalent excel formula.
For example I have the text 126.275,96 and the result is 126.27596 using value in BI instead of 126275.96 which the numbervalue formula in excel would return. For 815,48 I get the incorrect value of 81548 using the value formula in BI and the correct value of 815.48 using the numbervalue in excel.
@Anonymous
NUMBERVALUE:
To convert text to number, you can use VALUE() function.
SUMIFS:
You can use CALCULATE() and apply filter context. Please refer to this blog: PowerPivot DAX: CALCULATE is a supercharged SUMIF
=CALCULATE(SUM(Table[Amount]),FILTER(Table,Table[Column1] = "A" && Table[Column2] = "B"))
VLOOKUP:
In DAX, it can't evaluate at cell level like VLOOKUP since it can only evaluate on row level. You can use RELATED(), RELATEDTABLE() or LOOKUPVALUE() to achieve similar logic. For more details, please refer to blogs below:
VLOOKUP Functionality in Power Pivot
Regards,
Check out the July 2025 Power BI update to learn about new features.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
User | Count |
---|---|
70 | |
68 | |
43 | |
34 | |
26 |
User | Count |
---|---|
86 | |
49 | |
45 | |
38 | |
37 |