This is best Fabric, Power BI, SQL and AI community event. How do we know? The last event sold out! Save €200 with code FABCMTY200.
Register nowA new Data Days event is coming soon! This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. Don't miss out.
Hi all,
I have the following two measures for cumulative sales amounts for a fiscal year, with the previous year plotted for comparison:
YTD = CALCULATE(SUM(FactInternetSales[SalesAmount]), FILTER (ALL(FactInternetSales), FactInternetSales[Fiscal Year] <= MAX(FactInternetSales[Fiscal Year]) ))
PYTD = CALCULATE(SUM(FactInternetSales[SalesAmount]), FILTER (all(FactInternetSales),FactInternetSales[Fiscal Year]= MAX(FactInternetSales[Fiscal Year])-1 && (FactInternetSales[OrderDate]) <= MAXX(FactInternetSales,DATEADD(FactInternetSales[OrderDate],-1,YEAR))))
I would like to have a seperate visual showing the variance in % terms within the same period.
Variance = ( [YTD] - [PYTD] ) / [YTD] doesn't work.
NB: The Fiscal Year is April to March in this instance.
Can anyone help??
Rumbles
Solved! Go to Solution.
Ok, soI've solved the problem, by dealing with the infinity calculation at the beginning, by using:
Increase From Previous Fiscal Year ii = DIVIDE( ([Internet Sales YTD] - [Internet Sales PYTD] ), [Internet Sales PYTD],0)
BUT: the graph shows 0% for the first year of trading for which there was no previous year.
Is there a way of the third argument returning something other than 0?
Increase From Previous Fiscal Year ii = DIVIDE( ([Internet Sales YTD] - [Internet Sales PYTD] ), [Internet Sales PYTD],"") would work,but I can't then format the measure as a percentage, since it contains text.
Any ideas?
Rumbles
Hi @Rumbles,
1. You don't need to use "" if you want to display blank() on the picture. If don't add any argument on the DIVIDE function, the default value is BLANK().
2. Personnal, I think 1 is the apporpriate like the followinf formula. There is no previous year, so the increase should be by the current year self. It will return on the graph.
Increase From Previous Fiscal Year ii = DIVIDE( ([Internet Sales YTD] - [Internet Sales PYTD] ), [Internet Sales PYTD],1)
Please let me know if you have any question.
Best Regards,
Aneglia
When you say it doesn't work, what kind of error are you getting?
I've got slightly further now.
Of course, it should be (YTD - PYTD) /PYTD to get the increase from PYTD.
But, on the visual the lines are missing, but when I hover over, I get the information. See attached
Ok, soI've solved the problem, by dealing with the infinity calculation at the beginning, by using:
Increase From Previous Fiscal Year ii = DIVIDE( ([Internet Sales YTD] - [Internet Sales PYTD] ), [Internet Sales PYTD],0)
BUT: the graph shows 0% for the first year of trading for which there was no previous year.
Is there a way of the third argument returning something other than 0?
Increase From Previous Fiscal Year ii = DIVIDE( ([Internet Sales YTD] - [Internet Sales PYTD] ), [Internet Sales PYTD],"") would work,but I can't then format the measure as a percentage, since it contains text.
Any ideas?
Rumbles
Hi @Rumbles,
1. You don't need to use "" if you want to display blank() on the picture. If don't add any argument on the DIVIDE function, the default value is BLANK().
2. Personnal, I think 1 is the apporpriate like the followinf formula. There is no previous year, so the increase should be by the current year self. It will return on the graph.
Increase From Previous Fiscal Year ii = DIVIDE( ([Internet Sales YTD] - [Internet Sales PYTD] ), [Internet Sales PYTD],1)
Please let me know if you have any question.
Best Regards,
Aneglia
Check out the May 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 31 | |
| 26 | |
| 23 | |
| 22 | |
| 15 |
| User | Count |
|---|---|
| 62 | |
| 47 | |
| 28 | |
| 24 | |
| 21 |