Power BI modeling with ADX – cheat sheet

This post has been republished via RSS; it originally appeared at: New blog articles in Microsoft Community Hub.

Power BI modeling with ADX - cheat sheet

 

Creating Star-schema models with ADX

 

  1. Any dimension table should include a setting of IsDimension=true

DanyHoter_0-1678875777616.png

 

  1. Relationships between DQ tables are created as M:M by default. This is not a problem and even recommended with single direction.

DanyHoter_1-1678875777618.png

 

  • If you want to change the relationship to 1:m , make sure to also check assume referential integrity. This will force the connector to use inner joins.

You can change to 1:M from the relationships properties

DanyHoter_2-1678875777619.png

 

DanyHoter_3-1678875777619.png

 

 

 

 

 

 

  1. Dimensions in dual mode are recommended especially if you want to search on dimensions and slicers cross filter each other.
  2. Date filters, unlike string filters, are not optimal when joining the fact table.

Date dimensions if needed, should be imported.

  1. Use Strings for key columns which participate in relationships.

Integer columns are less optimal and should be avoided.

  1. Decimal columns should be avoided as they are very slow in calculations.

Leave a Reply

Your email address will not be published. Required fields are marked *

*

This site uses Akismet to reduce spam. Learn how your comment data is processed.