Hi
I have requirement where i don't want to show the field if it was null in summary view if it has the data it has to be displayed. the source of the view is interface in that interface the source of the fields is View. so could you please help on how can display this accordingly
Discussion posts and replies are publicly visible
You can write an expression in showwhen parameter of the component in which you are showing this field.
This should be as simple as
showWhen: a!isNotNullOrEmpty(/*field value*/)
Each component in Appian has a showWhen parameter. Putting a a!isNullOrEmpty() in it should get you there.