If there is a requirement to hide a column if all rows are empty. Use the below expression
=IIF(Fields!ColumnSample.Value = Nothing, True, False)
Below is the sample code we can use for adding a newline after every occurrence of "@" symbol in the string in C# using System...
this is not working in version 9.0 Dynamics 365
ReplyDeleteis there any other syntax ??
Use this instead
ReplyDelete=IIF(CountDistinct(Fields!fieldName.Value)=0, True,false)
Thank for sharing! Appreciated.
Delete