Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I am having an issue with creating the following expression.
I need to group together any individuals who have more than 1 row of data
I then need to sum a value and only show if it is more than 8.5
So far I have tried the following:
if(sum(XYZ>=8.5), XYZ)
But this does not group together the total if a person has more than 1 row of data (null values are those with more than 1 row of data)
Hope this makes sense!
Any help is appreciated.
Thanks
May be this
Sum({<Surname = {"=Sum(XYZ) >= 8.5"}>} XYZ)
Thank you that works great - one more question...
How would I take the value of those people who are over 8.5 and do a count?
Thanks
May be this
Count(DISTINCT {<Surname = {"=Sum(XYZ) >= 8.5"}>} Surname)
That's fab thank you!!