Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register 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.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Prices go up Feb. 11th.
Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.
User | Count |
---|---|
143 | |
79 | |
63 | |
52 | |
47 |
User | Count |
---|---|
217 | |
89 | |
76 | |
66 | |
60 |