I have one text field i want show data if have data in database if the data is null i want show any symbol in that text field
IIF(IsNothing(Fields!PoNo.Value),"n/a" , Format( cdec(Fields!PoNo.Value)))
Hi vail,
Refer the below expression.
=IIF(Fields!PoNo.Value="","n/a",Fields!PoNo.Value)
© COPYRIGHT 2025 ASPSnippets.com ALL RIGHTS RESERVED.