- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

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.
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😀.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

@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
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

@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
Subject | Author | Posted | |
---|---|---|---|
Anonymous
| 02-21-2024 01:22 AM | ||
02-13-2024 04:44 AM | |||
03-07-2024 06:53 AM | |||
09-14-2023 09:47 PM | |||
02-28-2024 11:53 AM |
User | Count |
---|---|
114 | |
92 | |
84 | |
54 | |
46 |