Forum Discussion
DataCruncher123
5 years agoFrequent Visitor
Create a new table with first date
Hi, I want to create a new table from this one where all my cases are listed (only once) with the first date. Can someone help me? 🙂 BR
- 5 years ago
DataCruncher123 , A new table like this?
Summarize(Table,Table[Case], "Date", min(Table[Date create final]))
Fowmy
Super User
5 years agoDataCruncher123
You can create a new table using the following code, it will remove duplicates except for the 1st record.
NewTable = Distinct('Your Table')________________________
If my answer was helpful, please click Accept it as the solution to help other members find it useful
Click on the Thumbs-Up icon if you like this reply 🙂
- DataCruncher1235 years agoFrequent Visitor
That doesn't solve the problem. I need a table that shows the distinct cases and for each case the first date
- amitchandak5 years ago
Super User
DataCruncher123 , A new table like this?
Summarize(Table,Table[Case], "Date", min(Table[Date create final]))
- DataCruncher1235 years agoFrequent Visitor
thanks a lot! 🙂