March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
This is the measure I'm using to calculate total gifts to date in the current fiscal year.
Solved! Go to Solution.
Hi @PBrainNWH - Sorry,
can you try either sameperiodlastyear or parallelperiod function from dax
Below logic i am sharing with Paralleperiod function.
GiftsLastFY =
CALCULATE(
[Total Gifts],
DATESYTD(
PARALLELPERIOD(Opportunity[CloseDate], -1, YEAR),
"6/30"
)
)
Did I answer your question? Mark my post as a solution! This will help others on the forum!
Appreciate your Kudos!!
Proud to be a Super User! | |
Hi @PBrainNWH Create a measure that calculates the total gifts for the last fiscal year.
Create below measure and check:
GiftsLastFY =
CALCULATE(
[Total Gifts],
DATESBETWEEN(
Opportunity[CloseDate],
DATE(YEAR(TODAY())-1, 7, 1),
DATE(YEAR(TODAY()), 6, 30)
)
)
assuming FY ends with June.
Did I answer your question? Mark my post as a solution! This will help others on the forum!
Appreciate your Kudos!!
Proud to be a Super User! | |
Thank you for replying.
The calculation GiftsLastFY is giving me the total for every day of the last fiscal year. I'm testing on one record and they have one $10,000 gift in last fiscal year.
Hi @PBrainNWH - Sorry,
can you try either sameperiodlastyear or parallelperiod function from dax
Below logic i am sharing with Paralleperiod function.
GiftsLastFY =
CALCULATE(
[Total Gifts],
DATESYTD(
PARALLELPERIOD(Opportunity[CloseDate], -1, YEAR),
"6/30"
)
)
Did I answer your question? Mark my post as a solution! This will help others on the forum!
Appreciate your Kudos!!
Proud to be a Super User! | |
ParallellPeriod seems to work! Thank you.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
23 | |
15 | |
12 | |
9 | |
8 |
User | Count |
---|---|
41 | |
32 | |
29 | |
12 | |
12 |