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

Microsoft is giving away 50,000 FREE Microsoft Certification exam vouchers. Get Fabric certified for FREE! Learn more

Reply
utsavlexmark
Helper III
Helper III

Measures are not working with filter On

Hello,

Let me give you an idea about the data I am working with.

Year

Month

Code

DATA

Instances

2020

Mar

SI

A

2

2020

Mar

SC

A

1

2020

Mar

SI

B

2

2020

Mar

SC

B

1

2020

Apr

SI

A

2

2020

Apr

SC

A

1

2020

Apr

SI

B

2

2020

Apr

SC

B

1

 

“SI” and “SC” are code added with unique ID such as “A” and “B”.

First requirement was; I wanted a column to show the instance of each unique ID based on generic code.

DATA

Instances (SI)

Instances (SC)

A

4

2

B

4

2

 

This is working with the following “Measures”

  1. Sum Instance = SUM(Data[Instance])
  2. Instances (SI) = CALCULATE([Sum Instance],FILTER(ALLEXCEPT(Data,Data[DATA]),Data[Code]="SI"))
  3. Instances (SC) = CALCULATE([Sum Instance],FILTER(ALLEXCEPT(Data,Data[DATA]),Data[Code]="SC"))

 

When I am seeing the total data these measures are working perfectly. But When I am trying to see with monthly filter on – like for Mar or Apr; data is incorrect.

 

I have a doubt that due to the first measure the problem is there in case of Month filter on.

 

Can anyone guide me?

 

Please let me know if I am not clear with my issue.

1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@utsavlexmark , Try like

Sum Instance = SUM(Data[Instance])
Instances (SI) = CALCULATE([Sum Instance],FILTER(Data,Data[Code]="SI"))
Instances (SC) = CALCULATE([Sum Instance],FILTER(Data,Data[Code]="SC"))

or


Sum Instance = SUM(Data[Instance])
Instances (SI) = CALCULATE([Sum Instance],FILTER(allselected(Data),Data[Code]="SI"))
Instances (SC) = CALCULATE([Sum Instance],FILTER(allselected(Data),Data[Code]="SC"))

 

allexcept mean only that filter will work

Full Power BI Video 20 Hours YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

View solution in original post

1 REPLY 1
amitchandak
Super User
Super User

@utsavlexmark , Try like

Sum Instance = SUM(Data[Instance])
Instances (SI) = CALCULATE([Sum Instance],FILTER(Data,Data[Code]="SI"))
Instances (SC) = CALCULATE([Sum Instance],FILTER(Data,Data[Code]="SC"))

or


Sum Instance = SUM(Data[Instance])
Instances (SI) = CALCULATE([Sum Instance],FILTER(allselected(Data),Data[Code]="SI"))
Instances (SC) = CALCULATE([Sum Instance],FILTER(allselected(Data),Data[Code]="SC"))

 

allexcept mean only that filter will work

Full Power BI Video 20 Hours YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Helpful resources

Announcements
PBIApril_Carousel

Power BI Monthly Update - April 2025

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

Notebook Gallery Carousel1

NEW! Community Notebooks Gallery

Explore and share Fabric Notebooks to boost Power BI insights in the new community notebooks gallery.

April2025 Carousel

Fabric Community Update - April 2025

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

Top Solution Authors