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
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
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.

Top Solution Authors