Discussions
Categories
Groups
Community Home
Categories
INTERNAL ENABLEMENT
POPULAR
THRUST SERVICES & TOOLS
CLOUD EDITIONS
Quick Links
MY LINKS
HELPFUL TIPS
Back to website
Home
Intelligence (Analytics)
Don't show dynamic data when null
egolan74
Hi,
I have a Dynamic Text element in a table:
row._outer["Field12"] + ":"
Sometimes the value is null and then I get in the output:
null:
Is there an expression that I can put that will check the value and will show the text only if it's not null?
Thanks
Find more posts tagged with
Comments
mwilliams
Hi Egolan74,
Have you tried just using an if statement in the dynamic text box to only output row._outer["Field12"] + ":" when the value is not equal to null?
shahamar
Try out if this works
if(row._outer["Field12"]!=null) {
row._outer["Field12"] + ":"
}
Amar