This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. We're covering it all. You won't want to miss it.
Learn moreJoin the FabCon + SQLCon recap series. Up next: Power BI, Real-Time Intelligence, IQ and AI, and Data Factory take center stage. All sessions are available on-demand after the live show. Register now
Hi, I can't get my head around filtering of date columns. I have two columns - Report date and Project date.
When I choose a Report date (say 04.07), I would like to see the latest Project date in another visual (say the latest was on 01.07) but not all the project dates before that (say I have 28.06 and 13.01 dates in the Project column as well) and also exclude any project dates after 04.07.
Are the Report Date and Project Date columns in the same table? In any case, here is an expression you can try
Latest Project Date =
VAR __thisreportdate =
SELECTEDVALUE ( Table[ReportDate] )
RETURN
CALCULATE (
MAX ( Table[ProjectDate] ),
ALL ( Table[ReportDate] ),
Table[ReportDate] <= __thisreportdate
)
If this works for you, please mark it as the solution. Kudos are appreciated too. Please let me know if not.
Regards,
Pat
To learn more about Power BI, follow me on Twitter or subscribe on YouTube.
Hi @mahoneypat Thanks! The report date column has been copied into the same column. The measure, however, returns always the latest Project date independent of the current Report date...
hi @Anonymous
Could you please share your sample pbix file and your expected output, that will be a great help.
Regards,
Lin
Maybe try something like this:
Measure =
VAR LastVisibleDate =
MAX ( Sales[Due Date] )
VAR Result =
CALCULATE (
MAX ( Sales[Order Date] ),
FILTER (
SUMMARIZE ( Sales, Sales[Order Date], Sales[Due Date] ),
Sales[Order Date] <= LastVisibleDate
)
)
RETURN
Result
Hi @AntrikshSharma I tried it but th measure returns always the latest Project date independent of the current Report date...
So the Due Date = Report date and Order Date = Project date or other way around?
What is they are in different tables? How would the line 8 Summarize look like?
Summarize can group by columns of mulitple tables, example:
SUMMARIZE(
Sales,
Sales[Order Date],
Sales[Due Date],
Customer[Birth Date]
)
Check out the April 2026 Power BI update to learn about new features.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
| User | Count |
|---|---|
| 38 | |
| 38 | |
| 31 | |
| 22 | |
| 15 |
| User | Count |
|---|---|
| 74 | |
| 61 | |
| 31 | |
| 31 | |
| 23 |