What I need is for the app to calculate the percentages of the key results and show the average. Example:
I have 3 key results with the percentage, 20%, 80% and 100%. I need the OKR to show 66.66%
Ok!
One more question.
How do you conect the 2 tables?
The main one (OKR) and the other with the Activities.
Is one “child table to the other”?
Show some pics of the data section of your app
If you have 2 tables conected with the Project ID, I think that the OKR will be an App Fomula similar to this:
sum(select(ActivityTable[Achieved%],[Project ID]=[_thisrow].[Project ID]))
/
count(select(ActivityTable[Activity id],[Project ID]=[_thisrow].[Project ID]))
Its like saying, Appsheet: sum please all the % achieved of the activities that have this same project of my OKR. Then for calculating the % , divide for the quantity of activities we have on this proj.