Reply
Topic Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Max Date filtered by a specific criteria/ID
01-17-2024
03:28 AM
Hello all,
I'va a problem receiving a result for a date. Here is the table-strucutre:
Table Name 'Invoices':
Invoice-Date | Product | Purchase Order (PO) | Latest Invoice-Date for PO |
01.12.2023 | X | A | |
05.12.2023 | X | B | |
06.01.2024 | Y | A | |
08.05.2022 | Z | C | |
01.12.2023 | X | B | |
08.09.2023 | Z | A |
My DAX-Try for the Column Latest Invoice Date for PO was as follows:
Latest Invoice-Date for PO = CALCULATE(Max('Invoices' [Invoice-Date]);Filter('Invoices';'Invoices'[Purchase Order (PO)]='Invoices'[Purchase Order (PO)]))
The Dax provides the following Values:
Invoice-Date | Product | Purchase Order (PO) | Latest Invoice-Date for PO |
01.12.2023 | X | A | 06.01.2024 |
05.12.2023 | X | B | 06.01.2024 |
06.01.2024 | Y | A | 06.01.2024 |
08.05.2022 | Z | C | 06.01.2024 |
01.12.2023 | X | B | 06.01.2024 |
08.09.2023 | Z | A | 06.01.2024 |
I would expect the following Values:
Invoice-Date | Product | Purchase Order (PO) | Latest Invoice-Date for PO |
01.12.2023 | X | A | 06.01.2024 |
05.12.2023 | X | B | 05.12.2023 |
06.01.2024 | Y | A | 06.01.2024 |
08.05.2022 | Z | C | 08.05.2022 |
01.12.2023 | X | B | 05.12.2023 |
08.09.2023 | Z | A | 06.01.2024 |
Any Idea, how to adjust the Dax formula to receive the expected values?
Kind regards
Solved! Go to Solution.
1 ACCEPTED SOLUTION
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-17-2024
03:54 AM
Hi @Philipp_ISARTAX possible solution, create measure as following
LatestInvoiceDate =
CALCULATE(
MAX('Invoices_new'[Invoice_Date]),
ALLEXCEPT('Invoices_new','Invoices_new'[PurchaseOrdrDate])
)
Adjust column and table names,
Did I answer your question? Mark my post as a solution!
Proud to be a Super User!
1 REPLY 1
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-17-2024
03:54 AM
Hi @Philipp_ISARTAX possible solution, create measure as following
LatestInvoiceDate =
CALCULATE(
MAX('Invoices_new'[Invoice_Date]),
ALLEXCEPT('Invoices_new','Invoices_new'[PurchaseOrdrDate])
)
Adjust column and table names,
Did I answer your question? Mark my post as a solution!
Proud to be a Super User!

Helpful resources
Recommendations
Subject | Author | Posted | |
---|---|---|---|
08-06-2024 07:48 PM | |||
09-12-2024 12:22 PM | |||
05-17-2024 12:50 AM | |||
04-24-2023 10:37 AM | |||
06-10-2024 10:41 AM |
Top Solution Authors (Last Month)
User | Count |
---|---|
14 | |
14 | |
11 | |
11 | |
8 |