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は空のセルを表示します。規定で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