Created
May 29, 2025 15:18
-
-
Save thiagosouza/925189472eb0a1188e237e6694e4d83f to your computer and use it in GitHub Desktop.
Notion
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
divide( | |
sum( /*points done, or in progress*/ | |
prop("Tasks").map( | |
toNumber( | |
current.prop("Status").match("Done|Archived") ? current.prop("Estimates") : 0 | |
) | |
), | |
prop("Tasks").map( | |
toNumber( | |
current.prop("Status").match("QA|Merge|Revisión|Pipeline") ? toNumber(current.prop("Estimates")) * 0.8 : 0 | |
) | |
), | |
prop("Tasks").map( | |
toNumber( | |
current.prop("Status").match("Codificación|Prueba\ Unitaria") ? toNumber(current.prop("Estimates")) * 0.2 : 0 | |
) | |
), | |
prop("Tasks").map( | |
toNumber( | |
current.prop("Status").match("Planning|Planificatión|Refinamiento|Definición") ? toNumber(current.prop("Estimates")) * 0.05 : 0 | |
) | |
) | |
), | |
sum( /*total estimates*/ | |
prop("Tasks").map( | |
toNumber(current.prop("Estimates")) | |
) | |
) | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment