Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Margaret
Creator II
Creator II

set analysis - defining set with multiple criteria for analysis

How do I write set analysis to count OmOrdID's where all of the following conditions apply?


{$<OmOrdID = {"=DocumentDate = AuditDate2"}>}

{<Document_8_4 = {'Y'}>}

{<Betw_8_4 = {'Y'}>}

{<Conf_Rec_Date = {'Y'}>}

{<Betw_8_midn = {'Y'}>}

1 Solution

Accepted Solutions
sunny_talwar

May be this:

Count({$<OmOrdID = {"=DocumentDate = AuditDate2"},

                Document_8_4 = {'Y'},

                Betw_8_4 = {'Y'},

                Conf_Rec_Date = {'Y'},

                Betw_8_midn = {'Y'}

>} OmOrdID)

View solution in original post

2 Replies
sunny_talwar

May be this:

Count({$<OmOrdID = {"=DocumentDate = AuditDate2"},

                Document_8_4 = {'Y'},

                Betw_8_4 = {'Y'},

                Conf_Rec_Date = {'Y'},

                Betw_8_midn = {'Y'}

>} OmOrdID)

Margaret
Creator II
Creator II
Author

Thank you!!!!!!!!!!!!!!!!!!1