Dieser Leitfaden behandelt die erweiterte Formel-Syntax und die Verwendung von Array- und Datensatzfunktionen, um Elemente in einem Array zu bearbeiten und Datensatzinformationen in Jotform-Tabellen abzurufen.
Im Folgenden finden Sie eine Liste von Array- und Datensatzfunktionen, die in Jotform Tables verfügbar sind:
<div class="wp-block-table is-style-stripes">
<table>
<thead>
<tr>
<th class="has-text-align-left" data-align="left" style="min-width: 160px;">Function</th>
<th class="has-text-align-left" data-align="left">Description</th>
</tr>
</thead>
<tbody>
<tr>
<td class="has-text-align-left" data-align="left"><a href="#arraycompact">ARRAYCOMPACT</a></td>
<td class="has-text-align-left" data-align="left">Combines array items, excluding empty strings and null values.</td>
</tr>
<tr>
<td class="has-text-align-left" data-align="left"><a href="#arrayjoin">ARRAYJOIN</a></td>
<td class="has-text-align-left" data-align="left">Join the array of items into a string with a separator.</td>
</tr>
<tr>
<td class="has-text-align-left" data-align="left"><a href="#arrayunique">ARRAYUNIQUE</a></td>
<td class="has-text-align-left" data-align="left">Returns only unique items in the array.</td>
</tr>
<tr>
<td class="has-text-align-left" data-align="left"><a href="#created_time">CREATED_TIME</a></td>
<td class="has-text-align-left" data-align="left">Returns the creation time of the current record.</td>
</tr>
<tr>
<td class="has-text-align-left" data-align="left"><a href="#record_id">RECORD_ID</a></td>
<td class="has-text-align-left" data-align="left">Returns the ID of the current record.</td>
</tr>
</tbody>
</table>
</div>Siehe auch:
ARRAYVERDICHTEN
Kombiniert Argumente zu einem einzigen String und schließt dabei leere Zeichenfolgen sowie null- oder Nullwerte aus. Die ARRAYCOMPACT-Funktion wird Argumente, die ein oder mehrere Leerzeichen enthalten, einbeziehen.
Syntax:
ARRAYCOMPACT(value1[,value2,...])Beispiele:
=ARRAYCOMPACT(0,1,2,3,"0") will return 1230.
=ARRAYCOMPACT("A",0,"B",FALSE(),"C",BLANK(),"D",,"E","","F") will return ABCDEF.
=ARRAYCOMPACT("A","0","B",TRUE(),"C"," ","D",ERROR()) will return A0B1C D#ERROR!.ARRAYVERBINDEN
Verbindet Argumente mit einem Trennzeichen. Im Gegensatz zu TEXTJOIN schließt ARRAYJOIN immer Argumente mit leeren Werten ein.
Syntax:
ARRAYJOIN(value1[,value2,...],delimeter)Beispiele:
=ARRAYJOIN("merry","go","round","_") will return merry_go_round.
=ARRAYJOIN("hello","world",BLANK(),"+") will return hello+world+.
=ARRAYJOIN("",0,FALSE(),,"-") will return -0-0-.ARRAYEINZIGARTIG
Gib das am weitesten rechts stehende eindeutige Element aus der Liste der Argumente zurück.
Syntax:
ARRAYUNIQUE(value1[,value2,...])Beispiele:
=ARRAYUNIQUE(3,2,1,2,3) will return 1.
=ARRAYUNIQUE(3,2,1,2,3,4,2) will return 4.
=ARRAYUNIQUE("A","A","B","B","C","C") will return C.ERSTELLUNGSZEIT
Gibt das Erstellungsdatum und die Uhrzeit des Eintrags zurück. Die CREATED_TIME-Funktion hat keine Argumente.
Syntax:
CREATED_TIME()Beispiele:
=CREATED_TIME() will return the entry's creation date and time, like 2022-07-28 04:15:05.
=TEXT(CREATED_TIME(),"MM/DD/YYYY") will return the entry's creation date in MM/DD/YYYY format, like 07/28/2022.DATENSATZ_ID
Gibt die Einreichungs-ID des Eintrags zurück. Die Funktion RECORD_ID hat keine Argumente.
Syntax:
RECORD_ID()Zum Beispiel gibt =RECORD_ID() die Einreichungs-ID des Eintrags zurück, wie 5348053057414712879.
Kommentar abschicken: