March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
I would like to have all unique values from a column in order to use it as a dimension table. Here is how I do that:
Yet, even though I'm excluding the blank ones I still have one blank. On top of that, when I try to connect it to my fact table it says that the relationship is many to many even though I don't see any duplicate values in this table.
Will appreciate any help!
Hi @Quiny_Harl,
In fact, blank records can be matched with multiple scenarios(blank, empty string, unrecognized special characters), I'd like to suggest you double-check your record value to confirm its type.
In addition, you can also take a look at the below blog about handle blank in Dax to know more them:
Handling BLANK in DAX
Regards,
Xiaoxin Sheng
@Quiny_Harl , Try
summarize(filter(Table, not(isblank([objective]) )),[campaign_id])
Are you sure it is blank and not a space or other character? If so, please try DISTINCT(campaign_id[objective]) instead. It will exclude the blank row.
Regards,
Pat
To learn more about Power BI, follow me on Twitter or subscribe on YouTube.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
114 | |
76 | |
57 | |
52 | |
44 |
User | Count |
---|---|
167 | |
117 | |
63 | |
57 | |
50 |