A la función ‘BUSCAR’ se le deben pasar valores constantes para sus parámetros tableName, lookupColumn y returnColumn: BUSCAR(lookupValue, tableName, lookupColumn, returnColumn). Considere envolver los parámetros constantes entre comillas dobles para garantizar un análisis correcto.
*value* - The value to match (as with the = operator) in the given data set and column. The value must be of a type suitable for comparison with the data set column. If value is an expression, it is evaluated from the perspective of the lookup data set (*dataset*). To reference columns of the current context, dereference_THISROW. See also: [SELECT()](https://support.google.com/appsheet/answer/10108207)
*dataset* - The name of the table or slice (the “data set”) in which to search asliteral text value, optionally enclosed in quotes to avoid confusion with reserved words.The argument may not be an expression.
*column* - The name of the column in which to search asliteral text value, optionally enclosed in quotes to avoid confusion with reserved words.The argument may not be an expression.
*return-column* - The name of the column whose value should be returned asliteral text value, optionally enclosed in quotes to avoid confusion with reserved words.The argument may not be an expression.
Wie 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.
Wie erhalte ich die letzte Zeile der Tabelle??
MAXROW(
"My Table",
"_ROWNUMBER"
)
Ersetzen Sie durch den Namen der Tabelle, deren Zeile Sie verwenden möchten.