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!Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
Hello everybody, I have a table in Power BI and I have created the following visualization. As you can see there 6893 articles, some of them are only C (Costruction), some of them are only I (Industry) and some are C+I (mixt). I would like to create a column saying only C, only I or Mixt. How can I do it? directly in the table or in the visualization. Thank you for your help
Solved! Go to Solution.
Hi @Anonymous ,
Based on your description, you can create a calculated table as follows.
My test table:
Table =
var x1=SUMMARIZE('Sheet4',Sheet4[cod_art],"count",DISTINCTCOUNT('Sheet4'[Column]))
return
ADDCOLUMNS(x1,"category",IF([count]=2,"Mixt","Only"&" "&LOOKUPVALUE('Sheet4'[Column],Sheet4[cod_art],[cod_art])))
Result:
Hope that's what you were looking for.
Best Regards,
Yuna
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @Anonymous ,
Based on your description, you can create a calculated table as follows.
My test table:
Table =
var x1=SUMMARIZE('Sheet4',Sheet4[cod_art],"count",DISTINCTCOUNT('Sheet4'[Column]))
return
ADDCOLUMNS(x1,"category",IF([count]=2,"Mixt","Only"&" "&LOOKUPVALUE('Sheet4'[Column],Sheet4[cod_art],[cod_art])))
Result:
Hope that's what you were looking for.
Best Regards,
Yuna
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the February 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 50 | |
| 49 | |
| 35 | |
| 15 | |
| 14 |
| User | Count |
|---|---|
| 91 | |
| 75 | |
| 41 | |
| 26 | |
| 25 |