Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Hi,
I have created 2 measures for the cumulative sales. 1 for Previous fiscal year and 1 for Current Fiscal year for the completed months. At the moment March is still not completed that's why this is not in scope of the line for Current fiscal year. I would like to end this line after the last completed month, but I do not know how. Can you help me? See my formula below!
My result now is shown here:
My desired result should be:
Formula Current Fiscal Year:
Hi @FreemanZ
This formula gives the following error: Too few arguments were passed to the IF function. The minimum argument count for the function is 2.
Sorry, try like:
Measure =
IF(
MAX('Calendar Posting Date'[Date])<=MAX(Append3[Date]),
[Current Fiscal Year Cumulative Sales for completed months]
)
forgot to close the bracket.
@FreemanZ
I have also tried the following formula:
hi @JC2022
try to plot a measure like this instead:
Measure =
IF(
MAX('Calendar Posting Date'[Date]<=MAX(Append3[Date]),
[Current Fiscal Year Cumulative Sales for completed months]
)
Check out the July 2025 Power BI update to learn about new features.
User | Count |
---|---|
23 | |
7 | |
7 | |
6 | |
6 |
User | Count |
---|---|
27 | |
12 | |
10 | |
9 | |
6 |