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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
patoku0207
Frequent Visitor

Filter date with independent slicer

hello

 

I'm new to Power BI. I have a date slicer with a first date and a second date.

This slicer is not related with the principal table who needs to be filtered.

 

I made a column " Filtre_cax_1" with this mesure :

Filtre_Cas_1 =
var MinDate = FIRSTDATE(Calendrier_SIF[DateSQL])   ' 01/09/2023 in this example
var MaxDate = LASTDATE(Calendrier_SIF[DateSQL])   ' 30/09/2023 in this example
 
RETURN
IF(LASTDATE(PassageStock[DateSortie])<MinDate,1,0)
 
I would have 1 if DateSortie < 01/09/2023 and 0 if not.
Capture d’écran 2023-11-27 225540.png
As you can see it doesnt work with NumeroLot 0001027669( DateSortie is higher than MinDate so Filtre_Cas_1 should be 0.
Thanks for your help and sorry for my poor english .
Patrice
1 ACCEPTED SOLUTION
parry2k
Super User
Super User

@patoku0207 try this:

 

Filtre_Cas_1 =
var MinDate = FIRSTDATE(Calendrier_SIF[DateSQL])   ' 01/09/2023 in this example
var MaxDate = LASTDATE(Calendrier_SIF[DateSQL])   ' 30/09/2023 in this example
 
RETURN
IF(SELECTEDVALUE(PassageStock[DateSortie])<MinDate,1,0)


Subscribe to the @PowerBIHowTo YT channel for an upcoming video on List and Record functions in Power Query!!

Learn Power BI and Fabric - subscribe to our YT channel - Click here: @PowerBIHowTo

If my solution proved useful, I'd be delighted to receive Kudos. When you put effort into asking a question, it's equally thoughtful to acknowledge and give Kudos to the individual who helped you solve the problem. It's a small gesture that shows appreciation and encouragement! ❤


Did I answer your question? Mark my post as a solution. Proud to be a Super User! Appreciate your Kudos 🙂
Feel free to email me with any of your BI needs.

View solution in original post

3 REPLIES 3
parry2k
Super User
Super User

@patoku0207 use MAX or MIN instead of SELECTEDVALUE



Subscribe to the @PowerBIHowTo YT channel for an upcoming video on List and Record functions in Power Query!!

Learn Power BI and Fabric - subscribe to our YT channel - Click here: @PowerBIHowTo

If my solution proved useful, I'd be delighted to receive Kudos. When you put effort into asking a question, it's equally thoughtful to acknowledge and give Kudos to the individual who helped you solve the problem. It's a small gesture that shows appreciation and encouragement! ❤


Did I answer your question? Mark my post as a solution. Proud to be a Super User! Appreciate your Kudos 🙂
Feel free to email me with any of your BI needs.

patoku0207
Frequent Visitor

hello and thanks for your answer. Unfortunately SELECTEDVALUE is not recognized .

I use a direct connection to analysis services and dont import datas.

parry2k
Super User
Super User

@patoku0207 try this:

 

Filtre_Cas_1 =
var MinDate = FIRSTDATE(Calendrier_SIF[DateSQL])   ' 01/09/2023 in this example
var MaxDate = LASTDATE(Calendrier_SIF[DateSQL])   ' 30/09/2023 in this example
 
RETURN
IF(SELECTEDVALUE(PassageStock[DateSortie])<MinDate,1,0)


Subscribe to the @PowerBIHowTo YT channel for an upcoming video on List and Record functions in Power Query!!

Learn Power BI and Fabric - subscribe to our YT channel - Click here: @PowerBIHowTo

If my solution proved useful, I'd be delighted to receive Kudos. When you put effort into asking a question, it's equally thoughtful to acknowledge and give Kudos to the individual who helped you solve the problem. It's a small gesture that shows appreciation and encouragement! ❤


Did I answer your question? Mark my post as a solution. Proud to be a Super User! Appreciate your Kudos 🙂
Feel free to email me with any of your BI needs.

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

Check out the August 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 Solution Authors