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