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

The Power BI Data Visualization World Championships is back! It's time to submit your entry. Live now!

Reply
DrillDownBI
Helper I
Helper I

Find Material from a Lastdate - 6 month from today

Hi,

I have a Last Good Received date on every material, now I want to find only thoose Material that have Last Good Received Date older than 6 month from today.

1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@DrillDownBI ,

 

use this measure with material in a table visual

 

measure  =

countrows(filter(Table, Table[Good receive date] < today() -180 ))

 

or

 

measure =var _date = date(year(today()), Month(Today())-6, day(Today()))
return
countrows(filter(Table, Table[Good receive date] < _date))

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

View solution in original post

2 REPLIES 2
amitchandak
Super User
Super User

@DrillDownBI ,

 

use this measure with material in a table visual

 

measure  =

countrows(filter(Table, Table[Good receive date] < today() -180 ))

 

or

 

measure =var _date = date(year(today()), Month(Today())-6, day(Today()))
return
countrows(filter(Table, Table[Good receive date] < _date))

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

Hi @amitchandak This point me into the right direction and will be accepted as solution, many thanks.

Helpful resources

Announcements
FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.