Jan 29, 2004 #1 asrinath Programmer Apr 25, 2003 8 US Hello All, I want to check for the existence of nulls in a database column and display Not Found if it is null. How do I do that using Actuate programming? TIA
Hello All, I want to check for the existence of nulls in a database column and display Not Found if it is null. How do I do that using Actuate programming? TIA
Feb 2, 2004 #2 bcaslow Programmer Nov 26, 2002 103 US Use the IsNull( ) function. If this is for a text control, you could do this on the DataRow's OnRead( ) method: If IsNull(ColumnA) Then ColumnA = "Not Found" End If Or, you could use the IIF expression in the control's ValueExp expression: IIF(IsNull(ColumnA), "Not Found", ColumnA) Upvote 0 Downvote
Use the IsNull( ) function. If this is for a text control, you could do this on the DataRow's OnRead( ) method: If IsNull(ColumnA) Then ColumnA = "Not Found" End If Or, you could use the IIF expression in the control's ValueExp expression: IIF(IsNull(ColumnA), "Not Found", ColumnA)