exam questions

Exam PL-300 All Questions

View all questions & answers for the PL-300 exam

Exam PL-300 topic 2 question 112 discussion

Actual exam question from Microsoft's PL-300
Question #: 112
Topic #: 2
[All PL-300 Questions]

HOTSPOT
-

You have a Power BI semantic model that contains two tables named Sales and Forecast. Both tables contain a date column.

You need to create a calculated table that will cover the range of dates in both tables.

How should you complete the DAX expression? To answer, select the appropriate options in the answer area.

NOTE: Each correct selection is worth one point.

Show Suggested Answer Hide Answer
Suggested Answer:

Comments

Chosen Answer:
This is a voting comment (?). It is better to Upvote an existing comment if you don't have anything to add.
Switch to a voting comment New
Lulu_2022
1 month, 1 week ago
DateRangeTable = CALENDAR( MIN(Sales[Date]), MAX(Forecast[Date]) ) CALENDAR(start, end): Returns a single-column table of dates from the start to the end date. MIN(Sales[Date]): Finds the earliest date in the Sales table. MAX(Forecast[Date]): Finds the latest date in the Forecast table. This ensures the resulting table spans the entire timeline needed to support both historical and forecasted data.
upvoted 1 times
...
f83734b
3 months, 1 week ago
1. CALENDAR 2. MINX 3. MAXX
upvoted 1 times
...
ca63a55
3 months, 3 weeks ago
https://learn.microsoft.com/es-es/dax/calendar-function-dax
upvoted 2 times
...
b92fc92
3 months, 3 weeks ago
isn't it correct?
upvoted 1 times
...
Anloindian123
5 months, 1 week ago
The answer is so half baked. There should be a MIN(MINX MINX), MAX (MAXX, MAXX)
upvoted 2 times
...
Community vote distribution
A (35%)
C (25%)
B (20%)
Other
Most Voted
A voting comment increases the vote count for the chosen answer by one.

Upvoting a comment with a selected answer will also increase the vote count towards that answer by one. So if you see a comment that you already agree with, you can upvote it instead of posting a new comment.

SaveCancel
Loading ...