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.
Hello Everyone,
Am looking for a way to hide "data fields" for a specific table column that is built out of a measure.
Below is an image of the Values that I want to hide (highlighted - Yellow) and the values that I want to keep (X - Blue):
Any help would be greatly appreciated, thank you in advance!
Regads,
Mo
Solved! Go to Solution.
Hi @Anonymous
Add condition to your measure output like this:
Measure =
Var _Old_Measure= Put your current measure formula here
Return
IF(_Old_Measure>1,blank(),_Old_Measure)
If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
LinkedIn: www.linkedin.com/in/vahid-dm/
Thank you Vahid, it did work!
Appreciate your help,
Mo
Hi @Anonymous
Add condition to your measure output like this:
Measure =
Var _Old_Measure= Put your current measure formula here
Return
IF(_Old_Measure>1,blank(),_Old_Measure)
If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
LinkedIn: www.linkedin.com/in/vahid-dm/