Hi @Ryan_Anderson1 - you can do something like this:
IF({Role Field} = 'Role 1', {Hours field} * 30, {Hours field * 25})
and then to include the trainings you can extend this with:
IF({Role Field} = 'Role 1', {Hours field} * 30, {Hours field * 25}) + {trainings complete field} * 50
For 2 roles, an IF statement is fine. If you end up with more than this, you can move to SWITCH statement, which is often easier than multiple nested IFs
Hi @Ryan_Anderson1 - you can do something like this:
IF({Role Field} = 'Role 1', {Hours field} * 30, {Hours field * 25})
and then to include the trainings you can extend this with:
IF({Role Field} = 'Role 1', {Hours field} * 30, {Hours field * 25}) + {trainings complete field} * 50
For 2 roles, an IF statement is fine. If you end up with more than this, you can move to SWITCH statement, which is often easier than multiple nested IFs
Thank you! I’ll start there and see if I have any issues, thank you!
Thank you! I’ll start there and see if I have any issues, thank you!
This isn’t correct - should be:
{Hours field} * 25