Hmm, what if you did a formula with a bunch of IFs in it?

IF(
{Score 1}, 3
) +
IF(
{Score 2}, 3
) +
IF(
{Score 3}, 3
)
If your data's set up differently could you provide a screenshot with some example data?
Hmm, what if you did a formula with a bunch of IFs in it?

IF(
{Score 1}, 3
) +
IF(
{Score 2}, 3
) +
IF(
{Score 3}, 3
)
If your data's set up differently could you provide a screenshot with some example data?
Hum...it's a good start and not working exactly the way I need.
Formula in the Max Possible Score: VTG field is:
IF(
{5.1 Content uses voice principles appropriate for the audience}, 3
) +
IF(
{5.2 Content uses a tone that matches the user's situation}, 3
) +
IF(
{5.3 Content follows existing editorial standards}, 3
)
But it's not coming up with the right answer. Based on the values in fields 5.1, 5.2, and 5.3 (image), the Max Possible Score: VTG field should be 6 not 9, because we're not counting the criterion that got scored -1 because the functionality isn't present.

I also need to look at my score formula (Score: Voice, Tone, ...) but that's on me.
Any additional thoughts are most welcome. Thank you 😁
Hum...it's a good start and not working exactly the way I need.
Formula in the Max Possible Score: VTG field is:
IF(
{5.1 Content uses voice principles appropriate for the audience}, 3
) +
IF(
{5.2 Content uses a tone that matches the user's situation}, 3
) +
IF(
{5.3 Content follows existing editorial standards}, 3
)
But it's not coming up with the right answer. Based on the values in fields 5.1, 5.2, and 5.3 (image), the Max Possible Score: VTG field should be 6 not 9, because we're not counting the criterion that got scored -1 because the functionality isn't present.

I also need to look at my score formula (Score: Voice, Tone, ...) but that's on me.
Any additional thoughts are most welcome. Thank you 😁
Ah! Sorry, try this:
IF(
{Score 1} > 0, 3
) +
IF(
{Score 2} > 0, 3
) +
IF(
{Score 3} > 0, 3
)

Ah! Sorry, try this:
IF(
{Score 1} > 0, 3
) +
IF(
{Score 2} > 0, 3
) +
IF(
{Score 3} > 0, 3
)

Thank you, Adam! That works exactly the way I wanted it to. 💝