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
Hello,
I created matrix table. I would like to replace column: totalhours, rows: PL, SE, TR from value (which is sum value) into text: N/A text. I was trying to resolve problem by my own, but I could not. Maybe someone got some idea?
Thank you in advance.
Matrix table:
BR
Lukas
Solved! Go to Solution.
@Anonymous , You can do that but that will make it as text measure
If(Max(Table[Task]) in {"PL", "SE", "TR"} , "#N/A", [TPH]& "")
or
If(Max(Table[Task]) in {"PL", "SE", "TR"} ,blank() , [TPH])
@Anonymous , You can do that but that will make it as text measure
If(Max(Table[Task]) in {"PL", "SE", "TR"} , "#N/A", [TPH]& "")
or
If(Max(Table[Task]) in {"PL", "SE", "TR"} ,blank() , [TPH])
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!