Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! It's time to submit your entry. Live now!
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.
Solved! Go to Solution.
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))
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))
Hi @amitchandak This point me into the right direction and will be accepted as solution, many thanks.
| User | Count |
|---|---|
| 51 | |
| 38 | |
| 33 | |
| 22 | |
| 19 |
| User | Count |
|---|---|
| 136 | |
| 102 | |
| 58 | |
| 36 | |
| 35 |