データ ソースにインデックス キーを追加し、大文字と小文字を正規化すると、大文字と小文字を区別する列の未定義の値やエラーに関する問題を解決するのに役立ちます。インデックス キーは一意の識別子を提供でき、大文字と小文字を正規化することでデータの一貫性が確保されるため、Power BI セマンティック モデルで発生したエラーを防ぐことができます。 Azure SQL データベース データ ソースから日付テーブルと売上テーブルをインポートする Power BI データ モデルがあります。売上テーブルには次の日付外部キーがあります。 *期日 *注文日 *配送日 3 つの日付すべてに基づいて、時間の経過に伴う売上の分析を同時にサポートする必要があります。 解決策: 日付外部キーごとに、sales テーブルと date テーブルの間に非アクティブなリレーションシップを追加します。 これは目標を満たしていますか?
正解:B
Simply adding inactive relationships between the sales table and the date table for each date foreign key does not fully meet the goal. While inactive relationships allow for flexibility, they alone do not enable analysis over time based on all three dates simultaneously. To achieve this, you would need to use DAX functions like USERELATIONSHIP to activate the appropriate relationship in your measures. Without this, the inactive relationships won't be utilized in your calculations, meaning that analysis based on those dates won't work as intended.