Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
Hi! I would like to create a new table that summarizes Prod. and Cust. depending on last Date (for both Prod. and Cust).
Please see an example below.
For the second Prod. there is the same date for different Cust. that's why I thought to use FirstNonBlank.
| Prod. | Cust. | Date |
| 1 | a | dt1 |
| 1 | a | dt2 |
| 1 | b | dt3 |
| 2 | a | dt1 |
| 2 | a | dt4 |
| 2 | c | dt4 |
Desired result in New Table:
| Prod. | Cust. | Date (max) |
| 1 | b | dt3 |
| 2 | a | dt4 |
Could anyone please help me? Many thanks in advance, Kind regards, est gas
Solved! Go to Solution.
Hi @estgas
Go to Modelling Tab>>>>NEW TABLE
New Table =
SUMMARIZE (
TableName,
TableName[Prod.],
"Last Date", MAX ( TableName[Date] ),
"Last Date Customers", CALCULATE (
FIRSTNONBLANK ( TableName[Cust.], TableName[Cust.] ),
FILTER ( TableName, TableName[Date] = MAX ( TableName[Date] ) )
)
)
Hi @estgas
Go to Modelling Tab>>>>NEW TABLE
New Table =
SUMMARIZE (
TableName,
TableName[Prod.],
"Last Date", MAX ( TableName[Date] ),
"Last Date Customers", CALCULATE (
FIRSTNONBLANK ( TableName[Cust.], TableName[Cust.] ),
FILTER ( TableName, TableName[Date] = MAX ( TableName[Date] ) )
)
)
Many Thank Zubair! Exactly what I was looking for!
By the way I replaced SUMMARIZE with SUMMARIZECOLUMNS assuming that is preferred according to conclusion of https://www.sqlbi.com/articles/introducing-summarizecolumns/
HI @estgas
Yes I believe
SummarizeColumns
or
combination of Summarize with AddColumns
is much faster than mere Summarize
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the February 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 61 | |
| 54 | |
| 41 | |
| 17 | |
| 13 |
| User | Count |
|---|---|
| 106 | |
| 99 | |
| 38 | |
| 29 | |
| 28 |