The ultimate Microsoft Fabric, Power BI, Azure AI, and SQL learning event: Join us in Stockholm, September 24-27, 2024.
Save €200 with code MSCUST on top of early bird pricing!
Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
Hi all,
I would like to have, in a table, the customer ID, the customer name and the order date like the one below:
Customer ID | Customer Name | Order Date |
1 | Cust A | 01/01/2023 |
2 | Cust B | 01/02/2023 |
3 | Cust C | 01/03/2023 |
My challenge is that the user will have the possibility to define a start date and an end date via a slicer and we have multiple order dates per period. So, let's take the scenario that the user selects the period from Jan 23' - Mar 23, the table will show something like that:
Customer ID | Customer Name | Order Date |
1 | Cust A | 01/01/2023 |
2 | Cust B | 01/02/2023 |
2 | Cust B | 15/02/2023 |
3 | Cust C | 01/03/2023 |
3 | Cust C | 15/03/2023 |
Any idea how can I show only the unique Customers, based on the 1st Order Date that happened per ID (like min(Order Date)), so the table will look like as the 1st table (above)?
Many thanks!
Hi @v-yangliu-msft,
Please let me know if you have any further ideas about my question.
FYI, I need also to take into consideration the date slicer selection in my flag's DAX formula (which I use the column [Date] from 'Date' table. So, I need to add in the existing DAX the logic:
'Table'[Order Date] >= minx(allselected(date),'date'[date])
Many thanks!
Hi @tsoulge ,
Here are the steps you can follow:
1. Create measure.
Flag =
IF(
MAX('Table'[Order Date]) = MINX(FILTER(ALL('Table'),'Table'[Customer ID]=MAX('Table'[Customer ID])&&'Table'[Customer Name]=MAX('Table'[Customer Name])),[Order Date]),1,0)
2. Place [Flag]in Filters, set is=1, apply filter.
3. Result:
Best Regards,
Liu Yang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly
Thanks for your response. The solution works except one important case:
If we have the same ID but a different Customer Name (which is normal since the selection period reflects many years), the table shows both rows. My expectation is to have a table with unique IDs, without taking account any differences in the Customer Names. Any solution about this issue?
Thanks again!
Hello everyone,
Any update you may have would be greatly appreciated, since I'm working on it to a very strict deadline.
Also, in case it helps, I have tried to use LASTNONBLANK or LASTNONBLANKVALUE functions with no success so far, so please let me know if you have a better solution.
Thanks again.
Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.
Check out the August 2024 Power BI update to learn about new features.
Learn from experts, get hands-on experience, and win awesome prizes.
User | Count |
---|---|
18 | |
18 | |
17 | |
15 | |
13 |
User | Count |
---|---|
36 | |
34 | |
19 | |
18 | |
16 |