Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello,
I have been able to come up with the following equation which gives me total distinct count of days, but I need it to have BDI Flag = 1.
=Sum(Aggr(Count(Distinct ACCT_OPEN_DT),BDI_Flag))
when I do this, it still gives me same count.
=Sum(Aggr(Count(Distinct ACCT_OPEN_DT),BDI_Flag='1'))
Any ideas?
May be this
=Sum(Aggr(Count({<BDI_Flag = {1}>} Distinct ACCT_OPEN_DT),BDI_Flag))
May be this
=Sum(Aggr(Count({<BDI_Flag = {1}>} Distinct ACCT_OPEN_DT),BDI_Flag))
TY!