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!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
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