Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi, community!
I'm having some throuble finding a solution for this. I have a set of data who shows the effort (hours) appointed untill now (GASTOS) per RAT, and I'm trying to find the percentage of DISTINCT RATs (summing the GASTOS column) that are above the estimated effort (ORCADO). The logic behind this is as follows:
Can anyone help me with this?
Thanks a lot!
gbpadial.
May be this:
Count({<RAT = {"=Sum(GASTOS) <= ORCADO"}>} DISTINCT RAT)/Count(DISTINCT RAT)
May be this:
Count({<RAT = {"=Sum(GASTOS) <= ORCADO"}>} DISTINCT RAT)/Count(DISTINCT RAT)
Thanks, Sunny!
It worked like a charm!