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

Earn the coveted Fabric Analytics Engineer certification. 100% off your exam for a limited time only!

Reply
adam_macs
Helper I
Helper I

FILTER ALL is duplicating my rows

Hi, i am trying to build a measure that calculates the total sales for the prior year of the user selected year i.e. if user selects 2021 sales, 2020 sales will show. So im trying to make it fairly dynamic. 

 

My measure is correctly showing the sales amount, however when i add in the Region field, the values start to repeat. Im sure it has something to do with the FILTER ALL section, however im not sure what to substitute it with to make it work. 

 

Any help much appreciated.

 

Order VALUE( Previous AY ) = 
VAR previousYR = SELECTEDVALUE( Finance_Sales[AcademicYear].[Year], 0 ) -1
RETURN
CALCULATE(
[Net_Order_Value_(commit)],
FILTER(
ALL( Finance_Sales ),
Finance_Sales[AcademicYear].[Year] = previousYR
))

 

adam_macs_0-1635258154323.png

 

1 ACCEPTED SOLUTION
VahidDM
Super User
Super User

Hi @adam_macs 

 

Can you share a sample of your data?

BTW, you did not use any time elements in the matrix, so try this:

Order VALUE( Previous AY ) = 
VAR previousYR = SELECTEDVALUE( Finance_Sales[AcademicYear].[Year], 0 ) -1
RETURN
CALCULATE(
     [Net_Order_Value_(commit)],
     Finance_Sales[AcademicYear].[Year] = previousYR
 )

 

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

Appreciate your Kudos!!

 

View solution in original post

1 REPLY 1
VahidDM
Super User
Super User

Hi @adam_macs 

 

Can you share a sample of your data?

BTW, you did not use any time elements in the matrix, so try this:

Order VALUE( Previous AY ) = 
VAR previousYR = SELECTEDVALUE( Finance_Sales[AcademicYear].[Year], 0 ) -1
RETURN
CALCULATE(
     [Net_Order_Value_(commit)],
     Finance_Sales[AcademicYear].[Year] = previousYR
 )

 

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

Appreciate your Kudos!!

 

Helpful resources

Announcements
April AMA free

Microsoft Fabric AMA Livestream

Join us Tuesday, April 09, 9:00 – 10:00 AM PST for a live, expert-led Q&A session on all things Microsoft Fabric!

March Fabric Community Update

Fabric Community Update - March 2024

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

Top Solution Authors