
Creator
2024-02-23
08:45 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Max in a table
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 ?
450 Views
1 Solution
Accepted Solutions


MVP
2024-02-23
10:11 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
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])
424 Views
2 Replies


MVP
2024-02-23
10:11 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
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])
425 Views

Creator
2024-02-23
10:24 AM
Author
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
it's perfect thank you
416 Views
