Nur den Datensatz mit dem jüngsten Datum anzeigen

Hallo,
Frage eines SeaTable Neulings:
Ich habe eine Tabelle mit den Einkaufswerten für verschiedene Produkte zu verschiedenen Zeiten.
Die Tabelle habe ich nach Produkten gruppiert. Jetzt möchte ich innerhalb der jeweiligen Produktgruppe nicht alle Einkäufe, sondern nur den Datensatz mit dem jeweils jüngsten Einkaufsdatum anzeigen lassen.
Kann man das innerhalb der Tabelle irgendwie lösen?
Danke

Hallo,
Entschuldigung aber ich kann nich die Lösung, dass ich gefunden habe in deutsch explizieren: ich habe Deutsch ins Schule gelernt aber ich habe zu viel vergessen… So werde ich in Englisch schreiben…

I didn’t find a totally simple solution to your problem, so this solution might not be exactly what you’re looking for because it needs another table…

  • I created another table containing only the products (let’s call it Products) and linked your first existing table with this second table (instead of having a column directly containing the name of the product, you have a “link to other record” column pointing to one row of the Products table
  • Inside the Products table, I added a column called last date (link formula/findmax column looking for the max of the date column of you first table)
  • After that, two solutions:
    • you duplicate the last date column and only change the column to lookup so you can directly have in the Products table and for each product one column displaying the last order’s date and another one displaying the price
    • in your first table, you create a last order formula column with the formula {productLink.last date} = {date} assuming that the column linking to the Products table is called productLink and that your first table stores the purchase date in a column named date. Then, in addition to your grouping by product, you can had a filter with the rule “last order is true” to display, in your first table, only the last order in each product group

Bests,
Benjamin

Hi Benjamin,
thanks for the detailed explanation.
I will try to follow your step-by-step guide.
Frank

Bitte poste Deine Fragen nicht mehrfach.

Eine weitere Lösungsoption habe ich hier aufgezeigt: Only show the largest entry in a group - #4 by rdb

Diesen Thread schließe ich.