Complete the code to define the central table in a star schema.
FactTable = [1]The fact table is the central table in a star schema that stores numeric measures and foreign keys to dimension tables.
Complete the code to identify a dimension table in a star schema.
DimensionTable = [1]Dimension tables store descriptive information that helps explain the facts, such as product names or customer details.
Fix the error in the DAX expression to create a relationship between fact and dimension tables.
Relationship = CREATE_RELATIONSHIP(FactTable[[1]], DimensionTable[DimensionKey])The fact table uses a foreign key (FactKey) to link to the dimension table's primary key (DimensionKey).
Fill both blanks to complete the DAX formula that calculates total sales from the fact table.
TotalSales = SUM(FactTable[[1]]) + SUM(FactTable[[2]])
The total sales can be calculated by summing the sales amount and discount amount columns from the fact table.
Fill all three blanks to create a calculated column that categorizes sales as High, Medium, or Low based on Quantity.
SalesCategory = IF(FactTable[[1]] > 100, "High", IF(FactTable[[2]] > 50, "Medium", "[3]"))
This formula checks the Quantity column twice to assign categories: above 100 is High, above 50 is Medium, else Low.