adding if condition in the label parameter of grid column, if local!docids are not available then column should be blank and otherwise Uploaded documents.
Can you please help on this.
Thanks for your thoughts on this.
Discussion posts and replies are publicly visible
Hi. To complement Venkat Avuluri suggestion, if there's a case where the variable "local!docsIds" is not a list, the length() function will return an error. To solve it, use the following code: if( or( a!isNullOrEmpty(local!docs), length(local!docs) = 0 ), "", "Uploaded Documents" )
if( or( a!isNullOrEmpty(local!docs), length(local!docs) = 0 ), "", "Uploaded Documents" )