Complete the code to mark the 'Date' table as a date table using the correct column.
MARKASDATETABLE('Date', '[1]')
The 'Date' column is typically used to mark a table as a date table in Power BI.
Complete the DAX expression to mark 'Calendar' as a date table using the correct date column.
MARKASDATETABLE('Calendar', '[1]')
The 'Date' column is the standard column to mark a date table in Power BI.
Fix the error in the DAX code to correctly mark 'SalesDate' as a date table with the right column.
MARKASDATETABLE('SalesDate', '[1]')
The column used to mark the date table must be the actual date column in the 'SalesDate' table, which is 'SalesDate'.
Fill both blanks to mark 'DateTable' as a date table using the correct function and column.
DEFINE VAR DateTbl = [1](DATE(2020,1,1), DATE(2020,12,31)) EVALUATE MARKASDATETABLE(DateTbl, '[2]')
Use CALENDAR to create a date table and mark it with the 'Date' column.
Fill all three blanks to create a date table and mark it correctly with the right function and column.
VAR DateRange = [1](DATE(2021,1,1), DATE(2021,12,31)) RETURN [2](DateRange, '[3]')
First create a date range with CALENDAR, then mark it as a date table using MARKASDATETABLE with the 'Date' column.