Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hi All,
I am having one Main table.
I am creating another table from the main table, having just one product_id column with distinct values.
ProductTab= DISTINCT(Table[product_id])
Current result:
| product_id |
| 1 |
| 2 |
| 3 |
| 4 |
| 5 |
| 6 |
But in my Main table, I also have blank product ids, for which I've sales.
So I want the blank value too to show in my distinct values column of product_id of new table.
How to get the blank id ?
Expected result:
| product_id |
| 1 |
| 2 |
| 3 |
| 4 |
| 5 |
| 6 |
Thanks.
Solved! Go to Solution.
ProductTab= union(DISTINCT(Table[product_id]), ROW("product_id", blank())
ProductTab= union(DISTINCT(Table[product_id]), ROW("product_id", blank())
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!
| User | Count |
|---|---|
| 5 | |
| 5 | |
| 4 | |
| 4 | |
| 4 |
| User | Count |
|---|---|
| 24 | |
| 21 | |
| 13 | |
| 12 | |
| 10 |