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