Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
amgedz
New Member

Creating change in year volume over Fiscal year

Hello,

 

I have volumes over 5 FY and I want to visualize them as the difference every fiscal year and set targets.

 

So the objective is to have column (difference in volumes) and line (targets) chart 

 

My data is structured this way below

 

FYVolume

18/19

100
19/2040
20/2190
21/22200

 

Targets

FYTarget
19/2020
20/2180
21/2270

 

The objective is to create a table showing the incremental difference between two values for the FY as below

FYIncr. change
19/20

-60

20/21-60
21/2250
4 REPLIES 4
v-lionel-msft
Community Support
Community Support

Hi @amgedz ,

 

Has your problem been solved?

 

Best regards,
Lionel Chen

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

amgedz
New Member

thank you so much It is some how working but I don't know why when I apply slicers they don't apply to the measures I have created

Hi @amgedz ,

 

Is this what you want?

v-lionel-msft_0-1621911573581.png

 

Best regards,
Lionel Chen

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

 

amitchandak
Super User
Super User

@amgedz , Create a common table FY (say Date) with a rank column

 

New column in FY Table

FY Rank = RANKX(all('Date'),'Date'[FY],,ASC,Dense)

 

measure examples 
FY Year = CALCULATE(sum('order'[Qty]), FILTER(ALL('Date'),'Date'[FY Rank]=max('Date'[FY Rank])))
FY Year = CALCULATE(sum('order'[Qty]), FILTER(ALL('Date'),'Date'[FY Rank]=max('Date'[FY Rank])-1))

 


diff = [FY Year]-[FY Year ]
diff % = divide([FY Year]-[FY Year ],[FY Year ])

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.