exam questions

Exam PL-300 All Questions

View all questions & answers for the PL-300 exam

Exam PL-300 topic 7 question 4 discussion

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

Which DAX expression should you use to get the ending balances in the balance sheet reports?

  • A. CALCULATE ( SUM( BalanceSheet[BalanceAmount] ), LASTDATE ( 'Date'[Date] ) )
  • B. CALCULATE ( SUM( BalanceSheet[BalanceAmount] ), DATESQTD('Date'[Date]) )
  • C. FIRSTNONBLANK ('Date'[Date] SUM( BalanceSheet[BalanceAmount] ) )
  • D. CALCULATE ( MAX( BalanceSheet[BalanceAmount] ), LASTDATE ('Date'[Date] ))
Show Suggested Answer Hide Answer
Suggested Answer: A 🗳️

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
fdsdfgxcvbdsfhshfg
Highly Voted 2 years, 7 months ago
A) - LASTDATE() as we do not sum the balances of last 3 months
upvoted 58 times
1CY1
6 months, 3 weeks ago
I don't understand why it would be the MAX. The balance is the last entry for the period which may not be a MAX.
upvoted 1 times
...
Tsuk
2 years, 7 months ago
A) I agree with term of “balance” and it doesn’t make sense to roll up 3 months snapshot of asset value or ending balance.
upvoted 3 times
...
Hoeishetmogelijk
2 years, 4 months ago
I think that you are right. These are monthly balances and you can't sum them up over 3 months. So you should take only the last one.
upvoted 2 times
charles879987
2 years, 3 months ago
I think A is right. balance is typically semi-additive. Nevertheless, when aggregating over time you cannot use the SUM function. The balance of a quarter is not the sum of individual monthly balances. Instead, the measure should report the last balance of the quarter. https://www.daxpatterns.com/semi-additive-calculations/
upvoted 3 times
badrionlion
2 years, 1 month ago
nope. From a Financial perspective, one doesn't sum up the account balances every last date of the month. Its only the last balance that is valid.
upvoted 1 times
...
...
...
olajor
2 years, 7 months ago
no B is correct as you want the sum of the last 3 months. "At least one of the balance sheet reports in the quarterly reporting package must show the ending balances for the quarter"
upvoted 12 times
do you even know what a balance is?
upvoted 8 times
...
Lewiasskick
2 years, 5 months ago
why we should add up the end balance of balance sheet account
upvoted 2 times
...
...
...
NotMeAnyWay
Highly Voted 2 years, 6 months ago
Selected Answer: B
B) DATESQTD The Balance sheet report is a quarterly report so it needs to have the sum of the last three months. The Balances table is reporting in monthly intervals, so it needs to be summed up to produce a quarterly result. That is where DATESQTD comes in, as it states: "Returns a table that contains a column of the dates for the quarter to date, in the current context." LASTDATE() will instead produce a result: "Returns the last date in the current context for the specified column of dates." Which would only show the last month's result.
upvoted 15 times
badrionlion
2 years, 1 month ago
one should not add the balance amount every month and say that's the balance. Only the last value is valid from the financial perspective
upvoted 6 times
1CY1
6 months, 3 weeks ago
Exactly, you don't add up the balance of bank account each day to get the balance at the end of the month???
upvoted 1 times
...
...
...
hebertorosillo
Most Recent 3 months, 1 week ago
Selected Answer: B
this question is out context, this comes from a use case . case : you to get the following information from the quarterly reports. the answer is B.
upvoted 1 times
...
Layla0322
3 months, 3 weeks ago
Selected Answer: A
This question revolves around calculating values for a balance sheet report. In financial reporting, balance amounts (like assets, liabilities) are typically semi-additive, meaning you use the value from the last period (e.g., the end of the quarter) rather than summing up balances from each month. Option A (LASTDATE): Returns the balance for the last date in the quarter. This is correct for balance sheet data since it reflects the final state for the reporting period. Option B (DATESQTD): Calculates a sum of balances for all dates in the quarter. This is typically used for metrics like sales or revenue, but not appropriate for balances because adding balances over time doesn’t make sense. Conclusion: The correct answer is A (LASTDATE), as it accurately represents the final balance at the end of the quarter.
upvoted 3 times
...
speranza1
4 months, 2 weeks ago
Selected Answer: B
In the discription they say about the type of report: "Analysts must be able to create new reports from the dataset that contains the profit and loss data, but the reports built by the analysts must NOT be included in the quarterly reports for the board. Analysts must NOT be able to share the quarterly reports with anyone. Changes in long-term liabilities from the previous quarter".
upvoted 1 times
...
jaume
5 months ago
Selected Answer: A
I was little mislead with the fact reports are intended to be used in the QUARTERLY board meetings so I was thinking of option B to get the result of the entire quarter (there it's used the DATESQTD function), but there is no sense at all to sum the inventories (and other items in the balance sheet) for each month in the period, report must only show the current final amount so we need to take the LASTDATE. It looks to me this question is more about evaluating your understanding of what a balance sheet is rather than PBI analysis.
upvoted 1 times
...
HenryBiz
10 months, 2 weeks ago
Selected Answer: A
Daily balance should not be added, or there will end up with counted items multiple times.
upvoted 1 times
...
Mo2011
11 months, 1 week ago
CALCULATE ( SUM( BalanceSheet[BalanceAmount] ), LASTDATE ( 'Date'[Date] ) ) This expression sums the BalanceAmount from the BalanceSheet table and uses LASTDATE to consider only the amounts up to the last date in the Date table, which is typically the end of the period like a month, quarter, or year. This is a common way to calculate ending balances in financial reporting1. The other options provided are not standard for calculating ending balances:
upvoted 1 times
...
DataEngDP
1 year ago
In Exam, 06/04/2024 Calculate/SUM/LASTDATE
upvoted 4 times
...
M_Jawah
1 year, 4 months ago
A- IS CORRECT
upvoted 1 times
...
M_Jawah
1 year, 5 months ago
The correct answer is B. The DAX expression in option B uses the CALCULATE function to sum the balance amount for each quarter, based on the date column in the Date table. The DATESQTD function returns a table of dates in the same quarter as the last date in the current filter context. This way, the ending balances in the balance sheet reports are calculated for each quarter, regardless of the granularity of the date column.
upvoted 1 times
...
SamiaAwais
1 year, 7 months ago
A) LastDate As per the case study, there must be at least one balance sheet report in the quarterly reporting package that will demonstrate the ending balance for the quarter and also the previous quarter. Semi-additive calculations, like the balance at end of the month, apply LASTDATE Function.
upvoted 1 times
...
taod
1 year, 7 months ago
Selected Answer: A
A) - LASTDATE()
upvoted 1 times
khushal3051
1 year, 7 months ago
hey man how was your paper did you pass the exam/
upvoted 1 times
...
...
Aslan3
1 year, 8 months ago
Selected Answer: B
Balance report is quarterly so DATESQTD is the correct answer.
upvoted 1 times
...
MEG_Florida
1 year, 8 months ago
Selected Answer: A
LASTDATE, please please do not add up the last 3 months (or any quarters) ending balance to get your quarters total
upvoted 2 times
...
JJMC5544
1 year, 10 months ago
Selected Answer: A
They don't say every balance sheet is in quarterly form. They say "At least one of the balance sheet reports in the quarterly reporting package must show the ending balances for the quarter, as well as for the previous quarter." Question texts are so ambiguous, confusing.
upvoted 4 times
...
UlyUkr
1 year, 11 months ago
The correct answer is LASTDATE. We don't need Quarterly Running Total of the Balance Amount.
upvoted 1 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 ...
exam
Someone Bought Contributor Access for:
SY0-701
London, 1 minute ago