Microsoft is giving away 50,000 FREE Microsoft Certification exam vouchers. Get Fabric certified for FREE! Learn more
Hi community!
I have a table like this
Article | Department | Country | Group | Date |
A | A1 | A1A | A1AA | 01.01.2023 |
Since there are multiple values for the same Article I would like to get only the first one.
How would you do that?
Using Group by? If so, how?
Solved! Go to Solution.
@joshua1990 Like this:
This is the M code generated:
#"Grouped Rows" = Table.Group(#"Changed Type", {"Article", "Department", "Country", "Group"}, {{"Date", each List.Min([Date]), type nullable date}})
@joshua1990 Like this:
This is the M code generated:
#"Grouped Rows" = Table.Group(#"Changed Type", {"Article", "Department", "Country", "Group"}, {{"Date", each List.Min([Date]), type nullable date}})
Check out the April 2025 Power BI update to learn about new features.
Explore and share Fabric Notebooks to boost Power BI insights in the new community notebooks gallery.
User | Count |
---|---|
23 | |
10 | |
10 | |
9 | |
9 |