Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Removed translated content for 'zh'
Sv translation
languageen

From every column's script, you can access other columns by functions:
Function value(x) returns value of a x-th column of the import
Function name(x) returns name of the x-th column of the import
and include the results into the current column's script.

Samples

Separating a column containing full name into two first name and surname:

Script for first name:

Code Block
return capitalize(substringBefore(value(1), ' '))

Script for surname name:

Code Block
return capitalize(substringAfter(value(1), ' '))
Sv translation
languageja

列毎のスクリプトからは機能によって他の列にアクセスできます

関数値(x)はインポートのa x-th列の値を返却します

関数名(x)はインポートのx-th 列の名前を返却します

現在列のスクリプトに結果が含まれます

サンプル 

家名と2ファーストネームに名前を含む列を分離します。

ファーストネーム用スクリプト:

Code Block
return capitalize(substringBefore(value(1), ' '))

家名にスクリプト:

Code Block
return capitalize(substringAfter(value(1), ' '))