Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I am trying to ascertain how many IDs were on a report in Jan but not on the report in Feb. I have had a couple of attempts with Set Analysis but hitting a brick wall: Current Set Analysis Used:
COUNT(DISTINCT{<BSEG_DT -={">=$(=MonthStart(Today(),-2)) <=$(=MonthEnd(Today(),-2))"},
BSEG_DT ={">=$(=MonthStart(Today(),-3)) <=$(=MonthEnd(Today(),-3))"}>}SA_ID)
But this just returns the total amount of IDs on the jan report.
Any ideas where I'm going wrong?
Cheers,
May be try this
Count(DISTINCT {<SA_ID = p({<BSEG_DT ={">=$(=MonthStart(Today(),-3)) <=$(=MonthEnd(Today(),-3))"}>}) - p({<BSEG_DT ={">=$(=MonthStart(Today(),-2)) <=$(=MonthEnd(Today(),-2))"}>})>} SA_ID)
May be try this
Count(DISTINCT {<SA_ID = p({<BSEG_DT ={">=$(=MonthStart(Today(),-3)) <=$(=MonthEnd(Today(),-3))"}>}) - p({<BSEG_DT ={">=$(=MonthStart(Today(),-2)) <=$(=MonthEnd(Today(),-2))"}>})>} SA_ID)
Perfect Sunny.
Cheers Bud.