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

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
Mihir2203
Regular Visitor

Seperate filter for seperate columns in a table visual.

Hi Community Members,

 

I have a table visual with two columns Stock Quantity and Sales Quantity value. I need to filter this columns with two seperate filter.

 

Mihir2203_0-1707723446952.png

Consider in a First filter, Month = Mar is selected 'Stocks (QTY)' should filter data as per Month of March

and in Second Filter, Month = Jul and Aug is selected 'Sales (value)' should filter data as per Month of july and August.

 

Please advice how we can achieve this.

Thanks in advance😀

 

 

 

 

1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@Mihir2203 , You can use two disconnected or atleast one disconnected date table

 

//Date1 is independent Date table, Date is joined with Table

 

Stock Quantity measure =
var _max = maxx(allselected(Date1),Date1[Date])
var _min = minx(allselected(Date1),Date1[Date])
return
calculate( sum(Table[Stock Quantity]), filter('Table', 'Table'[Date] >=_min && 'Table'[Date] <=_max))

 

 

//Date2 is independent Date table
new measure =
var _max = maxx(allselected(Date2),Date2[Date])
var _min = minx(allselected(Date2),Date2[Date])
return
calculate( sum(Table[Sales Quantity]), filter('Table', 'Table'[Date] >=_min && 'Table'[Date] <=_max))

 

 

Need of an Independent/disconnected Date Table:https://www.youtube.com/watch?v=44fGGmg9fHI

Power BI How to use/compare two Date/Period slicers: https://youtu.be/WSeZr_-MiTg

 

View solution in original post

2 REPLIES 2
Mihir2203
Regular Visitor

Hi @amitchandak,

Thanks for the solution. Its working as expected

amitchandak
Super User
Super User

@Mihir2203 , You can use two disconnected or atleast one disconnected date table

 

//Date1 is independent Date table, Date is joined with Table

 

Stock Quantity measure =
var _max = maxx(allselected(Date1),Date1[Date])
var _min = minx(allselected(Date1),Date1[Date])
return
calculate( sum(Table[Stock Quantity]), filter('Table', 'Table'[Date] >=_min && 'Table'[Date] <=_max))

 

 

//Date2 is independent Date table
new measure =
var _max = maxx(allselected(Date2),Date2[Date])
var _min = minx(allselected(Date2),Date2[Date])
return
calculate( sum(Table[Sales Quantity]), filter('Table', 'Table'[Date] >=_min && 'Table'[Date] <=_max))

 

 

Need of an Independent/disconnected Date Table:https://www.youtube.com/watch?v=44fGGmg9fHI

Power BI How to use/compare two Date/Period slicers: https://youtu.be/WSeZr_-MiTg

 

Helpful resources

Announcements
RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.

MayPowerBICarousel

Power BI Monthly Update - May 2024

Check out the May 2024 Power BI update to learn about new features.

LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.