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

Sometimes it happens that some members of your table do not have any data to display. This can be caused by:

  • Specific selection of date interval.
  • Application of specific filters combination.
  • Missing data in underlying data set.

By default, BellaDati will display empty cell.

ilupng
empty1

Nevertheless, you can use Replace empty value option to define specific numeric value, which will be displayed in the cells.

ilupng
empty2

Following code can be used to catch all empty cells:

Code Block
if (M_VALUE==NULL){
   ...
}

Using accounting dash ('-')

Use following code to replace empty value will desired symbol (String):

Code Block
if (M_VALUE==NULL){
   return '-';
}
ilupng
empty3

Next Steps

Sv translation
languageja

表の一部のメンバーに表示するデータがない場合があります。これは次によって引き起こされる可能性があります:

  • 特定の日付間隔の選択
  • 特定のフィルターの組み合わせの適用
  • 基礎となるデータセットのデータの喪失

デフォルトでは、BellaDatiは空のセルを表示します。

ilupng
empty1
それでもなお、空の値を置換オプションを使用して、セルに表示される特定の数値を定義できます。
ilupng
empty2
次のコードを使用して、すべての空のセルを把握できます:

Code Block
if (M_VALUE==NULL){
   ...
}

会計ダッシュの使用('-')

次のコードを使用して、空の値に必要な記号(文字列)で置換します:

Code Block
if (M_VALUE==NULL){
   return '-';
}

ilupng
empty3

次に

 

Sv translation
languagede

Manchmal kommt es vor, dass einige Werte Ihrer Tabelle keine Daten zum Anzeigen haben. Dies kann verursacht werden durch:

  • Spezifische Auswahl des Datumsintervalls.
  • Anwendung einer spezifischen Filterkombination.
  • Fehlende Daten im zugrunde liegenden Dataset.

Standardmäßig zeigt BellaDati eine leere Zelle an.

ilupng
empty1
Dennoch können Sie mit der Option Leerwert ersetzen einen bestimmten Zahlenwert definieren, der in den Zellen angezeigt wird.
ilupng
empty2
Der folgende Code kann verwendet werden, um alle leeren Zellen zu erfassen:

Code Block
if (M_VALUE==NULL){
   ...
}

Verwendung von Buchhaltungskennzeichen ("-")

Verwenden Sie den folgenden Code, um den leeren Wert des gewünschten Symbols (String) zu ersetzen:

Code Block
if (M_VALUE==NULL){
   return '-';
}

ilupng
empty3

Nächste Schritte