Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Hello,
I have a table that contains data for different items that have expiration dates.
I would like to be able to filter the table and show rows whose expiration dates are x months into the future.
So, for example, if I'm looking at the table now (in May 2023), I would like to see only rows with expiration dates 3 months into the future (the entirety of August 2023).
If I'm looking at the table in October 2023, I would like to see only rows with expiration dates 5 months into the future (the entirety of March 2024).
Only the month should be taken into consideration.
The table looks like this:
Any help would be greatly appreciated!
Solved! Go to Solution.
for caluclated column
Near Expiry =
IF(
MONTH(TODAY()) + 3 >= MONTH('Table'[Expiry Date]),
"Yes",
"No"
)
for measure
Near Expiry Measure =
IF(
MONTH(TODAY()) + 3 >= MONTH(MAX('Table'[Expiry Date])),
"Yes",
"No"
)
for caluclated column
Near Expiry =
IF(
MONTH(TODAY()) + 3 >= MONTH('Table'[Expiry Date]),
"Yes",
"No"
)
for measure
Near Expiry Measure =
IF(
MONTH(TODAY()) + 3 >= MONTH(MAX('Table'[Expiry Date])),
"Yes",
"No"
)
Check out the July 2025 Power BI update to learn about new features.
User | Count |
---|---|
24 | |
9 | |
7 | |
6 | |
6 |
User | Count |
---|---|
29 | |
11 | |
11 | |
10 | |
6 |