The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Hi,
Is it possible to create below formula in PBI?
=IF(OR(G8="A";G8="B");IF(ISBLANK(T8);"C";"D");VLOOKUP(G8;Matrix!A:B;2;0))
Thanks in advance
Solved! Go to Solution.
Hi @olivkalivka,
If you formula not contains any function who request value from specific cell, I think it is possible.
Calculate column formula:
LookUP = IF ( OR ( Table[G] = "A"; Table[G] = "B" ); IF ( Table[T] = BLANK() ; "C"; "D" ); LOOKUPVALUE ( Matrix[B]; Matrix[A]; Table[G] ) )
Regards,
Xiaoxin Sheng
Hi @olivkalivka,
If you formula not contains any function who request value from specific cell, I think it is possible.
Calculate column formula:
LookUP = IF ( OR ( Table[G] = "A"; Table[G] = "B" ); IF ( Table[T] = BLANK() ; "C"; "D" ); LOOKUPVALUE ( Matrix[B]; Matrix[A]; Table[G] ) )
Regards,
Xiaoxin Sheng