How to get the latest row value?

Hello everyone!

I need a help!
When I add a new entry to a table, say Table 1, how can I get this latest row value in another table, say Table 2 as its initial value?

The problem that I'm facing is, the values of this latest row is shown only after it is saved in the native spreadsheet, which sometimes takes a little longer to be saved. I want this row to get in Table 2 as soon as this entry is saved (i.e., after pressing the save button, and not after the row is saved in spreadsheet or the sync is complete). 

Thanks in anticipation!

0 2 126
2 REPLIES 2

So bekomme ich einen Spaltenwert nur aus der letzten Zeile dieses Dings?

LOOKUP(
  MAX(
    SELECT(
      My Table[_ROWNUMBER],
      ([_THISROW].[Thing] = [Thing])
    )
  ),
  "My Table",
  "_ROWNUMBER",
  "Wanted Column"
)

Ersetzen Sie durch den Namen der Tabelle, aus der der Spaltenwert stammen soll. mit dem Namen der Spalte, die einen Wert enthรคlt, der das gewรผnschte Objekt identifiziert (z. B. ); und mit dem Namen der Spalte, deren Wert Sie wรผnschen.

Sie sollten vielleicht auch Ihre Synchronisierungseinstellungen im Editor unter Einstellungen-->Leistung-->Synchronisierung: Cloud mit Datenquelle nach Bedarf รคndern.

 

Not working! Still having the same problem ๐Ÿ˜ž

Top Labels in this Space