Forum Discussion

AldoJavier26's avatar
AldoJavier26
Frequent Visitor
6 years ago

Formula with multiple iferror and lookupvalue functions

Currently trying to translate the below excel formula to dax. I gave it a shot below, but it doesn't work. The first 2 lines work, but the following 2 iferror functions just aren't looking up/returning any vaule

 

Excel

=

IF(LEFT(A8,3)="ABC","SO",
IFERROR(VLOOKUP(A8,BP Map!C:D,2,FALSE),
IFERROR(VLOOKUP(B8,BP Map!B:D,3,FALSE),
IFERROR(VLOOKUP(D8,'PO Map'!A:C,3,FALSE),
""))))

 

PowerBI

=

IF(LEFT('Aggregate'[Client ID],3)="ABC","SO",
IFERROR(LOOKUPVALUE('BP Map'[BP Office],'BP Map'[Code],'Aggregate'[Client ID]),
IFERROR(LOOKUPVALUE('BP Map'[BP Office],'BP Map'[Client Name],'Aggregate'[Client Name]),
IFERROR(LOOKUPVALUE('PO Map'[Branch],'PO Map'[Code],'Aggregate'[PO Code]),
"")))))

2 Replies