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

To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.

Reply
Anonymous
Not applicable

A measure to filter a value through more than one column

For one of my visuals I want to use the same column of data twice for my value field, but to output the data I want to show it requires two different set of filtering in the visual level filter field. The 2nd set of filtering being more complicated since I require more columns to output the data I want.

Is there a way to create a measure that filters thru multiple columns?

This quick measure only lets you add one filter, I'd like to add on to this measure and include more.

CALCULATE( COUNTA('Picked'[Reg Pick No.]), 'Picked'[Source Document] IN { "Assembly Consumption" } )

Example of the 2nd set of filtering

 

1 ACCEPTED SOLUTION
jdbuchanan71
Super User
Super User

Hello @Anonymous 

After the caclulate you can apply multiple filters:

Measure =
CALCULATE (
    COUNTA ( 'Picked'[Reg Pick No.] ),
    'Picked'[Source Document] IN { "Assembly Consumption" },
    'Picked'[Action Type] = "Take",
    'Picked'[source document] = "Assembly Consumption",
    'Picked'[WH Document Type] <> "shipment"
)

Is that what you were looking for?

View solution in original post

1 REPLY 1
jdbuchanan71
Super User
Super User

Hello @Anonymous 

After the caclulate you can apply multiple filters:

Measure =
CALCULATE (
    COUNTA ( 'Picked'[Reg Pick No.] ),
    'Picked'[Source Document] IN { "Assembly Consumption" },
    'Picked'[Action Type] = "Take",
    'Picked'[source document] = "Assembly Consumption",
    'Picked'[WH Document Type] <> "shipment"
)

Is that what you were looking for?

Helpful resources

Announcements
September Power BI Update Carousel

Power BI Monthly Update - September 2025

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

August 2025 community update carousel

Fabric Community Update - August 2025

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

Top Kudoed Authors