Hey guys,
I need some help and can’t find de answer for this! I have some projects and tasks, but each one have a kind of “weight” in certain steps, like:
When a task is in To Do, it have a weight of 5%
When a task is in Doing, it have a weight of 40%
When a task is in Validation, it have a weight of 5%
When a task is in Done, it have a weight of 50%
When I sum all of them, the result is 100%
I don’t know if it’s clear. I just want to do something like this /


Solved
How to sum tasks with weight, to decide a percentage of all project?
Best answer by Vivid-Squid
Hi @Cristiano_Vani,
Here is a Switch formula you can use to show you the percentage based on the Status of the task;
SWITCH(
Status,
'To Do', .05,
'Doing', .40,
'Validation', .05,
'Done', .50
)
Format the formula field to Percentages


I do not understand how you will add up to 100% as the status changes. Do you intent to store the percentage as you move through the process?
Maybe this formula makes more sense?
SWITCH(
Status,
'To Do', .05,
'Doing', .45,
'Validation', .50,
'Done', 1
)
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.
