Valid PL-300 Dumps shared by ExamDiscuss.com for Helping Passing PL-300 Exam! ExamDiscuss.com now offer the newest PL-300 exam dumps, the ExamDiscuss.com PL-300 exam questions have been updated and answers have been corrected get the newest ExamDiscuss.com PL-300 dumps with Test Engine here:
You have a Power BI model that contains a table named Date. The Date table contains the following columns: - Date - Fiscal Year - Fiscal Quarter - Month Name - Calendar Year - Week Number - Month Number - Calendar Quarter You need to create a calculated table based on the Date table. The calculated table must contain only unique combinations of values for Calendar Year, Calendar Quarter, and Calendar Month. Which DAX function should you include in the table definition?
Correct Answer: C
SUMMARIZE: "Creates a summary of the input table grouped by the specified columns." ADDCOLUMNS: "Returns a table with new columns specified by the DAX expressions." Based on this, using SUMMARIZE will give us the unique combination we want and don't need to use DAX expressions to create the calculated table.