Forum Discussion
How to do a vlookup between two excel and remove duplicates in Power BI
- 3 years ago
Hi cesarfg1991
You can use the DAX function LOOKUPVALUE().
It returns the value for the row that meets all criteria specified by one or more search conditions.
Syntax:
LOOKUPVALUE( <result_columnName>, <search_columnName>, <search_value> [, <search2_columnName>, <search2_value>]… [, <alternateResult>] )
For more details, please refer to: LOOKUPVALUE function (DAX) - DAX | Microsoft Learn
Best Regards,
Jianbo Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi cesarfg1991
You can use the DAX function LOOKUPVALUE().
It returns the value for the row that meets all criteria specified by one or more search conditions.
Syntax:
LOOKUPVALUE( <result_columnName>, <search_columnName>, <search_value> [, <search2_columnName>, <search2_value>]… [, <alternateResult>] )
For more details, please refer to: LOOKUPVALUE function (DAX) - DAX | Microsoft Learn
Best Regards,
Jianbo Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.