Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi All,
I have the below data and i would like to show 100% wherever the value fullfilled is Null(-).
I tried the expression like if(isnull([Value Fullfilled]),'100%',[Value Fullfilled]) but not getting the expected result.
Thanks.
Hi,
you can try this, you will found it at the bottom of the presentation tab of this type of chart you're using:

you can replace null values and missing values.
Hi, I tried the above steps but it doesn't have any effect. These setting will apply to the whole chart.
But i need to format only the value fulfilled column.
Thank you.
What about this:
If(len(trim([Value Fullfilled]))= 0 or [Value Fullfilled]='NULL' or [Value Fullfilled] ='-', '100%', [Value Fullfilled])
I would suggest this:
If(len(trim([Value Fullfilled]))= 0 or [Value Fullfilled]='' or isnull([Value Fullfilled]), '100%', [Value Fullfilled])
Handling with null values is more complicated than we sometimes imagine.![]()
Hi thank you. Its working as expected.
Yeah it worked. thanks
You're welcome !
don't forget to close the thread by marking correct and helpful answers
yes i did.