Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

issue on null sring in table box and straight table

hi

i have requirement that in my dashboard i have value called 'Null' i need to convert into Empty space.how to make it .

i have to convert 'NUll' into Space in table box and stairght table

Note:Null is string not like null()

thanks

Siddiq

1 Solution

Accepted Solutions
santiago_respane
Specialist
Specialist

Hi Abubakar,

in your straight table you can use an expression lik this:

=IF(<YourField>='NULL',' ',<YourField>)

But if you want to change it on a table box object you must do it the loading script, maybe with a preceding load or something like that.

Maybe you can share your app in order to be more helpfull.

Hpe this helps.

Kind regards,

View solution in original post

2 Replies
santiago_respane
Specialist
Specialist

Hi Abubakar,

in your straight table you can use an expression lik this:

=IF(<YourField>='NULL',' ',<YourField>)

But if you want to change it on a table box object you must do it the loading script, maybe with a preceding load or something like that.

Maybe you can share your app in order to be more helpfull.

Hpe this helps.

Kind regards,

Not applicable
Author

Thanks Santiago Respane