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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
Skriveblok
Frequent Visitor

How can I filter only one measure by slicer in a visual?

Hello everyone,

I have one table called "process fact table" with the follwing columns:

UIDprocessIDStart DateEnd Date
1aa12022-01-012022-01-01
1aa22022-01-012022-01-02
2ab12022-01-012022-01-02
2ab22022-01-022022-01-02
2ab

3

2022-01-022022-01-03
3cd12022-01-012022-01-03
3cd22022-01-03 2022-01-04
3cd32022-01-04 2022-01-06

 

When a user reaches processID 3, he will be counted as he finished this process. The start data and end date are for each step.

There is another "user meta table" with following columns. It is to be noted that when a client didn't reach step 3 yet, the value of "Days needed to reach step3" will be showed as -1.

UIDDays needed to reach step3
1aa-1
2ab2
3cd5

 

I built then two measures: measure1 called "registration" count how many user started process 1 on certain date, so here for 2022-01-01 as start date this measure should be 2; measure 2 called "finished", to measure how many user have reached step3, so for 2022-01-01 as start date this should be 2. 

I created a visual containing measure 1 and 2. with slicer "Date" having "Start Date" as values and "days to finish" having "Days needed to reach step3" as values. "Date" slicer should filter both measures, while "days to finish" slicer should just filter measure "finished" in this visual. How should make that possible?

 

 

Thank you!

1 ACCEPTED SOLUTION
MohammadLoran25
Solution Sage
Solution Sage

Hi Skriveblok,

You have to define your Registration Measure like this:

CALCULATE([Registration],

CROSSFILTER('Process Fact Table'[UID],'User Meta Table'[UID],NONE)

 

)

 

Then your problem would be solved.

Best Regards,

View solution in original post

1 REPLY 1
MohammadLoran25
Solution Sage
Solution Sage

Hi Skriveblok,

You have to define your Registration Measure like this:

CALCULATE([Registration],

CROSSFILTER('Process Fact Table'[UID],'User Meta Table'[UID],NONE)

 

)

 

Then your problem would be solved.

Best Regards,

Helpful resources

Announcements
November Power BI Update Carousel

Power BI Monthly Update - November 2025

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

Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors