Entries
Done V1
round((toNumber(prop("Vacuum")) + toNumber(prop("Washing")) + toNumber(prop("Plants")) + toNumber(prop("Shopping"))) / 4 * 1000) / 1000
Done V2
This allows you to add a different weight to specific checkboxes.
round((if(prop("Vacuum"), 2, 0) + if(prop("Washing"), 1, 0) + if(prop("Plants"), 1, 0) + if(prop("Shopping"), 1, 0)) / 5 * 1000) / 1000