Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hi Team,
Can you please assist me on below, as i want to do lookup in table SFDC_Open_data column Open_data from table SFDC_NoQuote_data column No Quotes.
below example from Excel, same need to be implemented in PBI
=IFERROR(VLOOKUP(A2,'No Quote'!A:A, 1, 0), "No Match")
Thank you
Regards,
You can check this document,
https://docs.microsoft.com/en-us/dax/lookupvalue-function-dax
LOOKUPVALUE(COLUMN TO BE RETURNED,COMMON COLUMN OF TABLE 1, COMMON COLUMN OF TABLE 2)
If you can give the common column, can write the column for you
Thanks
Hello @harirao ,
you can either work this through the merge function in power query and then add a custom column as:
if [vlookupedcolumn] = null then "No Match" else [vlookupedcolumn] or use the "lookupvalue" function in DAX (lookupvalue(NoQuotes, lookupvalue in noquotes, lookup value in Open_Data) and eventually mix it with an "If" so that:
If(lookupvalue[.....] = "", "No Match", lookupvalue[...])
One more note, if you opt for the merge in power query you gotta be careful to duplicates in the 2nd table you're merging or it might extend your main table for each occurrence of the selected value.
Hope this helps.
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!