hello
today i’m trying something newÂ
i have a boolean filter but in the Filters i need a condition like :
if the boolean is true (field is not null) and id the boolean is false the (field is null)
hello
today i’m trying something newÂ
i have a boolean filter but in the Filters i need a condition like :
if the boolean is true (field is not null) and id the boolean is false the (field is null)
Hi
Â
For the filter DAC field, you can give PXDefault(false) so that the default will be false (In this case, no need of checking for NULL condition). Below is an example for reference.
Â
 #region Status
    ÂPXBool()]
    >PXDefault(false, PersistingCheck = PXPersistingCheck.Nothing)]
    bPXUIField(DisplayName = "Active")]
    public virtual bool? Status { get; set; }
    public abstract class status : BqlBool.Field<status> { }
    #endregion
Â
Hope this helps!!
thank you for respondingÂ
the request was a check box (true or false) to filter in LegalGeneralLedgerGLTran.Matching
null or not null and i need to do that with report designerÂ
@khairi Then you can ISNULL() function. Below is the example for reference.
Below function will work likeÂ
if the field value is NULL then it will consider false otherwise trueÂ
Â
Ex: ISNULL(LDACField.Field1], false);
Â
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.