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

Score big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount

Reply
ravitejaballa
Helper III
Helper III

Slicer With single selection

Hi,

I have a data like below,

where "Months Since Started" is months difference with current date => (TodayMonth - startDateMonth)

Now i want to have slicer on report which filters

1. Contract expirying with in 6 months => Shows Devices = A, C, D, E

2. Contract expirying with in 3 months => Shows Devices = A, D

3. Contract expirying with in 1 month => Shows Devices = E

Note: Slicer will be single selection

 

DeviceContract Start DateMonths Since Started
A17-Dec-193
B21-Sep-1818
C15-Oct-195
D14-Jan-202
E16-Sep-196

 

11 REPLIES 11
Ashish_Mathur
Super User
Super User

Hi,

You may download my PBI file from here.

Hope this helps.

Untitled.png

 


Regards,
Ashish Mathur
http://www.ashishmathur.com
https://www.linkedin.com/in/excelenthusiasts/

@dax @Ashish_Mathur @amitchandak 

Here is my sample data.

 

DeviceContract Start DateMonths Since Started
A17-Dec-193
B21-Sep-1818
C15-Oct-195
D14-Jan-202
E16-Sep-196

 

IndexContract expirying
1with in 6 months
2with in 3 months
3with in 1 month
 

Capture.JPG

 

So Slicer should filter table as below.

1. Contract expirying "with in 6 months" => Shows Devices = A, C, D, E

2. Contract expirying "with in 3 months" => Shows Devices = A, D

3. Contract expirying "with in 1 month" => Shows Devices = C, E

Hi @ravitejaballa , 

Yes, as @Ashish_Mathur  mentioned , the"within 1 month" option should return blank(the date which within a month of today is 202/2/29-2020/3/31, no records within this range, it should return blank). Or you also could inform me your logic of  "within 1 month", then we will help you more correctly.

Best Regards,
Zoe Zhi

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Capture.JPG@Ashish_Mathur @dax 

To simplify further.

Same slicer but data should filter as shown.

 

ExpiryIn1Month =
IF(mtagData[contractDateDiff.months] == 6, TRUE())

 

ExpiryIn3Months =
IF(AND(mtagData[contractDateDiff.months] >= 1, mtagData[contractDateDiff.months] <= 3), TRUE())

 

ExpiryIn6Months =
IF(AND(mtagData[contractDateDiff.months] >= 1, mtagData[contractDateDiff.months] <= 6), TRUE())

 

Hi,

That is exactly what my solution does.  I have shared the file with you.


Regards,
Ashish Mathur
http://www.ashishmathur.com
https://www.linkedin.com/in/excelenthusiasts/

@Ashish_Mathur No, It is not working.

If you select "within 1 month" no data is shown.

Hi,

In the "Months since started" column, there is no entry of 1.  Therefore when you select "Within 1 month" in the slicer, no row shows up.


Regards,
Ashish Mathur
http://www.ashishmathur.com
https://www.linkedin.com/in/excelenthusiasts/
dax
Community Support
Community Support

Hi @ravitejaballa , 

I don't know your slicer style, you could refer to my sample for details. If this is not waht you want, please correct me and inform me more detailed information(such as your expected output and your sample data)? Then I will help you more correctly.

Please do mask sensitive data before uploading.

Thanks for your understanding and support.
Best Regards,
Zoe Zhi

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

 

amitchandak
Super User
Super User

You can get this by rolling months

Rolling 6 = CALCULATE(sum(Sales[Sales Amount]),DATESINPERIOD('Date'[Date Filer],MAX(Sales[Sales Date]),-6,MONTH))  
Or
Rolling 6 = CALCULATE(sum(Sales[Sales Amount]),DATESINPERIOD('Date'[Date Filer],Today(),-6,MONTH))  
//3
Rolling 3 = CALCULATE(sum(Sales[Sales Amount]),DATESINPERIOD('Date'[Date Filer],MAX(Sales[Sales Date]),-3,MONTH))  
Or
Rolling 3 = CALCULATE(sum(Sales[Sales Amount]),DATESINPERIOD('Date'[Date Filer],Today(),-3,MONTH))
//1
Rolling 1 = CALCULATE(sum(Sales[Sales Amount]),DATESINPERIOD('Date'[Date Filer],MAX(Sales[Sales Date]),-1,MONTH))  
Or
Rolling 1 = CALCULATE(sum(Sales[Sales Amount]),DATESINPERIOD('Date'[Date Filer],Today(),-1,MONTH))    

 

You can use a slicer like this to handle these measures

https://community.powerbi.com/t5/Desktop/Slicer-MTD-QTD-YTD-to-filter-dates-using-the-slicer/td-p/50...

 

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

@amitchandaksorry It won't help. I already have computated data in "Months since started". I only need to have a slicer as described.

 

@ravitejaballa ,This did not help ?

https://community.powerbi.com/t5/Desktop/Slicer-MTD-QTD-YTD-to-filter-dates-using-the-slicer/td-p/50...

 

Let me check

 

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

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.