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

Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.

Reply
Anonymous
Not applicable

Creating two tables with filters

Looking for some help with a filter. I'm trying to find a way to filter data into two tables to be able to compare them. In our warehouse we have jobs that run with the following events; MPICK, TOPOF, and MDOFF. Every job has the events MPICK and MDOFF. Only a portion of the jobs have all three. Is there a way to filter out the jobs that have all three events, remove them and place in their own table?

1 ACCEPTED SOLUTION

Hi, @Anonymous 

You can add a measure as below:

Count event of each Job = CALCULATE(COUNT('Table'[EVENT]),ALLEXCEPT('Table','Table'[DATE],'Table'[JOB]))

Then drag this measure to visual filter  pane to filter out these data.

veasonfmsft_1-1656050320592.png

veasonfmsft_2-1656050340198.png

Best Regards,
Community Support Team _ Eason

View solution in original post

3 REPLIES 3
Anonymous
Not applicable

Here is an example of the trable that includes all three events. So in this example i would want to remove Job 14525647 and Job 14525641 from this table and place them in their own.
UDC_Pickup_Dropoff.jpg

 

 

Hi, @Anonymous 

You can add a measure as below:

Count event of each Job = CALCULATE(COUNT('Table'[EVENT]),ALLEXCEPT('Table','Table'[DATE],'Table'[JOB]))

Then drag this measure to visual filter  pane to filter out these data.

veasonfmsft_1-1656050320592.png

veasonfmsft_2-1656050340198.png

Best Regards,
Community Support Team _ Eason

jorge_olivares
Frequent Visitor

Hey @Anonymous !

 

I made this file with some sample data. To make the table without the values you need you just need to modify the code from the last calculated table!

 

Please mark it as a solution if it helps, good luck @Anonymous!

 

Main table:

 

Screenshot 2022-06-24 202051.png

 

GroupByJob calculated table

 

GroupByJob = 
ADDCOLUMNS(
    SUMMARIZE('Table', 'Table'[JOB]), 
        "Event", CALCULATE(CONCATENATEX(DISTINCT('Table'[EVENT]), 'Table'[EVENT], ", ")))

 

Screenshot 2022-06-24 202529.png

 

Contains calculated table

 

Contains = FILTER('GroupByJob', 
    SEARCH("MDOFF", 'GroupByJob'[Event], 1, BLANK()) && 
    SEARCH("MPICK", 'GroupByJob'[Event], 1, BLANK()) &&
    SEARCH("TOPOF", 'GroupByJob'[Event], 1, BLANK()))

 

Screenshot 2022-06-24 202628.png

 

 

Helpful resources

Announcements
November Fabric Update Carousel

Fabric Monthly Update - November 2025

Check out the November 2025 Fabric 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.

Users online (25)