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
Solved! Go to Solution.
Hi @Anonymous
Create a new table with this formula
Table = VALUES(Sheet2[Year])
Sheet2 is the table as your example data.
Don't connect this "Table" with Sheet2, it means the two tables should have no relationship.
Add Table[year] in the slicer, create measures in "Sheet2".
Selected year = SELECTEDVALUE('Table'[Year])\ CY = CALCULATE(SUM(Sheet2[Sales]),ALLSELECTED(Sheet2)) PY = CALCULATE(SUM(Sheet2[Sales]),FILTER(ALL(Sheet2),[Year]=[Selected year]-1))
Best Regards
Maggie
Community Support Team _ Maggie Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @Anonymous
Create a new table with this formula
Table = VALUES(Sheet2[Year])
Sheet2 is the table as your example data.
Don't connect this "Table" with Sheet2, it means the two tables should have no relationship.
Add Table[year] in the slicer, create measures in "Sheet2".
Selected year = SELECTEDVALUE('Table'[Year])\ CY = CALCULATE(SUM(Sheet2[Sales]),ALLSELECTED(Sheet2)) PY = CALCULATE(SUM(Sheet2[Sales]),FILTER(ALL(Sheet2),[Year]=[Selected year]-1))
Best Regards
Maggie
Community Support Team _ Maggie Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hello @v-juanli-msft
Thanks for your help. I applied your solution and it's working perfectly with a minor chage to CY.
The CY measure
CY = CALCULATE(SUM(Sheet2[Sales]),ALLSELECTED(Sheet2))
is giving total sales of all years. So, I changed it to
CY = CALCULATE(SUM(Sheet2[Sales]),FILTER(ALL(Sheet2),Sheet2[Year]=Sheet2[Selected year]))
Hello @v-juanli-msft,
How can I calculate YTD Sales for CY and PY based on year selected?
Regards,
James Arthur
Hi @Anonymous
Does the previous measure not help?
How about this DAX function TOTALYTD which evaluates the year-to-date value of the expression in the current context?
Best Regards
Maggie
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 |
---|---|
124 | |
89 | |
84 | |
70 | |
51 |
User | Count |
---|---|
206 | |
143 | |
97 | |
79 | |
68 |