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

By default, BellaDati will display empty cell.

empty1

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

empty2

Following code can be used to catch all empty cells:

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

Using accounting dash ('-')

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

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

Next Steps