Hello all,
Does anyone have any bright ideas on how to solve the puzzle I'm currently struggling with?))
I have a source table with multiple entries from different projects. The entries for each specific project are added in a random order. Each entry has the following columns: Row#, Created, Project ID, and Flow Score columns.
I need to build a formula that makes the following:
- Pulls the Flow Score numbers from the above-source table for a specific ProjectID
- Calculate the average number of the the Flow Score
- Only the last/latest five entries should be considered
It's relatively straightforward to achieve the first two items by using AVG(Collect… ) with ProjectID as criteria. But I'm struggling to find the right way to get only the latest entries, either by Row# since the entries don't come in sequence, or by the Created column values.
When I attempt to use two nested Collect functions it returns an error.
Any suggestions on how to overcome this?
Thank you!