Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migration of unmigrated content due to installation of a new plugin
Sv translation
languageen
Note

When importing data with date dimension, BellaDati will always check for valid date format.

If the date is missing or has wrong format, data will not be imported.

ilupng
datevalidity1

You can use transformation script to handle these rows and modify them before being imported into BellaDati.

Following code checks if date is missing or is in default 00.00.0000 format.

Code Block
if (!value(1) | value(1)=='0.0.0000'){
  return '01.01.1900 00:00:00'
}
else {
	return value(1)
}

Transformation script returns either dummy date or original value, depending on result of IF condition.

ilupng
datevalidity2
Note

After this transformation, all data will be imported. It is up to you how to report and analyze rows with dummy date.

Next Step

Transformation scripting

Sv translation
languageja


Note

日付ディメンションを使用してデータをインポートする場合、BellaDatiは常に有効な日付形式をチェックします。

日付が不足しているまたは間違った形式を持っている場合、データは取り込まれません。

ilupng
datevalidity1

BellaDatiに取り込まれる前に、これらの行を処理し修正するために変換スクリプトを使用できます。


日付が欠落しているか、デフォルト00.00.0000形式である場合、コードのチェックを次通りです。

Code Block
if (!value(1) | value(1)=='0.0.0000'){
  return '01.01.1900 00:00:00'
}
else {
	return value(1)
}

変換スクリプトは、IF条件の結果に応じて、ダミー日付または元値のいずれかを返却します。

ilupng
datevalidity2


Note

この変換の後、すべてのデータがインポートされます。ダミー日付の行をレポートして分析する方法はあなた次第です。

次に:

Transformation scripting