Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello,
I've this table with [nombre d'heure]=Sum([Temps Total]) and [lapin] = RangeSum(Above(sum([Temps Total]),0,RowNo()))
But now, I would like to have the pourcentage of Nombre d'heure by the max(lapin) by activité
can you help me ?
You could get the needed partial total by applying a total-statement within the aggregation which may look like:
Sum([Temps Total]) / Sum(total < date, collabateur, activite> [Temps Total])
You could get the needed partial total by applying a total-statement within the aggregation which may look like:
Sum([Temps Total]) / Sum(total < date, collabateur, activite> [Temps Total])
it's perfect thank you