Goals Progress
Uses Status property.
if(prop("Status") == "Little Goal", round(prop("Little Goal") / prop("Goal") * 100) / 100, if(prop("Status") == "Goal", round(prop("Goals") / prop("Goal") * 100) / 100, if(prop("Status") == "Life Goal", round(prop("Life Goals") / prop("Goal") * 100) / 100, toNumber(""))))
Goals Progress V2
Ignore Status property.
if(not empty(prop("Little Goal")), round(prop("Little Goal") / prop("Goal") * 100) / 100, if(not empty(prop("Goals")), round(prop("Goals") / prop("Goal") * 100) / 100, if(not empty(prop("Life Goals")), round(prop("Life Goals") / prop("Goal") * 100) / 100, toNumber(""))))