Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hi All,
New to PBI and could do with some assistance please.
Trying to replicate a report in PBI that a collegue created in EXCEL.
I tried using his existing formula but got error that columns contain multiples where 1 was expected.
Below is the formula in excel
=IF(W3="Pass","",IF(O3<>AY3,"",VLOOKUP(B3,'GPS fail data Q1'!A:AC,3,FALSE)))
Below is how i tried in Power bi
Solved! Go to Solution.
IF(
'Cork /Global Order Report'[Inspection Outcome] = "PASS",
BLANK(),
IF(
'Cork /Global Order Report'[Test Group] <> 'Cork /Global Order Report'[Audit/Inspection],
BLANK(),
LOOKUPVALUE(
GPSReport_sheet_justq[cabserial_name],
GPSReport_sheet_justq[cabserial_name],
'Cork /Global Order Report'[Service tag]
)
)
)
Things to Check:
IF(
'Cork /Global Order Report'[Inspection Outcome] = "PASS",
BLANK(),
IF(
'Cork /Global Order Report'[Test Group] <> 'Cork /Global Order Report'[Audit/Inspection],
BLANK(),
LOOKUPVALUE(
GPSReport_sheet_justq[cabserial_name],
GPSReport_sheet_justq[cabserial_name],
'Cork /Global Order Report'[Service tag]
)
)
)
Things to Check:
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.