Get certified in Microsoft Fabric—for free! For a limited time, the Microsoft Fabric Community team will be offering free DP-600 exam vouchers. Prepare now
I have a sales table, where I use create table function to derive a geo/country master table using GeoCountryTable = ALLNOBLANKROW( Sales[GEO], Sales[Country])
It gives me all the unique combination fo geo/country but also returns a blank row. this blank row is causing issue when I join with other fact tables. How can I remove this?
Thanks
NM
Solved! Go to Solution.
You may add a Boolean expression to FILTER Function.
NOT ( ISBLANK ( Sales[GEO] ) && ISBLANK ( Sales[Country] ) )
You may add a Boolean expression to FILTER Function.
NOT ( ISBLANK ( Sales[GEO] ) && ISBLANK ( Sales[Country] ) )
Check out the October 2024 Power BI update to learn about new features.
Learn from experts, get hands-on experience, and win awesome prizes.
User | Count |
---|---|
112 | |
112 | |
105 | |
94 | |
58 |
User | Count |
---|---|
174 | |
147 | |
136 | |
102 | |
82 |