Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hi All,
I have three tables.
FY1819 = values for Jul 2018 to Jun 2019.
FY1920 = values for Jul 2019 to Jun 2020.
FY2021 = values for Jul 2020 to Jun 2021.
I need to calculate changes of total counts of "Tickets Number" in the Fiscal Year. I put total counts on boxes.
now need to calculate changes. Formual to calculate changes is "Previous FY - Current FY / Current FY".
Help will be appreciated.
Thanks
Solved! Go to Solution.
Hi @sdhn
Check this:
Measure 1=
Var _Y1 = SUM(FY1920[Tickets Number])
Var _Y2 = SUM(FY1819[Tickets Number])
Var _Y1Y2 = _Y1-_Y2
return
_Y1Y2 - _Y2
If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
LinkedIn: www.linkedin.com/in/vahid-dm/
Hi, @sdhn
You missed a parenthesis in formula.
Just add ')':
Measure1 =
DIVIDE (
SUM ( FY1920[Tickets Number] ) - SUM ( FY1819[Tickets Number] ),
SUM ( FY1819[ITickets Number] )
)
Did I answer your question? Please mark my reply as solution. Thank you very much.
If not, please feel free to ask me.
Best Regards,
Community Support Team _ Janey
Hi, @sdhn
You missed a parenthesis in formula.
Just add ')':
Measure1 =
DIVIDE (
SUM ( FY1920[Tickets Number] ) - SUM ( FY1819[Tickets Number] ),
SUM ( FY1819[ITickets Number] )
)
Did I answer your question? Please mark my reply as solution. Thank you very much.
If not, please feel free to ask me.
Best Regards,
Community Support Team _ Janey
Hi @sdhn
Check this:
Measure 1=
Var _Y1 = SUM(FY1920[Tickets Number])
Var _Y2 = SUM(FY1819[Tickets Number])
Var _Y1Y2 = _Y1-_Y2
return
_Y1Y2 - _Y2
If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
LinkedIn: www.linkedin.com/in/vahid-dm/
On which table, Do I need to write formula/ measure?
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 8 | |
| 6 | |
| 6 | |
| 4 | |
| 4 |
| User | Count |
|---|---|
| 25 | |
| 16 | |
| 8 | |
| 7 | |
| 7 |