PS Query Expression Use
Trying to use a query expression in a field that uses another query expression to compute a result.
e.g.
EXPR1 = SUM(CASE WHEN C.EP_PRELIM_GRP = 1 THEN 1 END) = 2
EXPR2 = COUNT(A.EMPLID) = 6
I'd like to try to figure out the percentage by EXPR1 / EXPR2. But, I can't find any references on how to divide them.