exam questions

Exam DP-500 All Questions

View all questions & answers for the DP-500 exam

Exam DP-500 topic 1 question 132 discussion

Actual exam question from Microsoft's DP-500
Question #: 132
Topic #: 1
[All DP-500 Questions]

HOTSPOT
-

You are building a financial report by using Power BI.

You have a table named financials that contains two columns named Date and Sales.

You need to create a DAX measure that calculates the relative change in sales compared to the previous quarter.

How should you complete the measure? To answer, select the appropriate options m 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
MaryemSB
1 year, 6 months ago
CALCULATE DATEADD DIVIDE
upvoted 1 times
...
fireofsea
1 year, 9 months ago
Sales QoQ% = IF ( NOT ISFILTERED('financials'[Date]), ERROR("Uh oh."), VAR PREV_QUARTER = CALCULATE( SUM('financials'[Sales]), DATEADD('financials'[Date].[Date], -1, QUARTER) ) RETURN DIVIDE(SUM('financials'[Sales]) - PREV_QUARTER, PREV_QUARTER) )
upvoted 1 times
...
Alborz
1 year, 10 months ago
CALCULATE DATEADD DIVIDE
upvoted 3 times
...
konitoki
1 year, 11 months ago
CALCULATE DATEADD DIVIDE
upvoted 3 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 ...