Help with formula or automation

I have 3 different check boxes, Admin Review Done, Finance Review Done and Legal Review Done. There is another multi-selection box called Types of Review that can contain one to all of 3 options (Admin Review, Finance Review, & Legal Review). I need it so that after all the required check boxes are selected. The check box for Review Process Done is checked automatically. How do I do this with automation rules or a formula?

1 Like

:wave: @FFSL_GISIT

Welcome to the community :hugs:

For a formula approach, for ReviewProcessDone column, add as formula

SwitchIf(AdminReviewDone=true and FinanceReviewDone=true and LegalReviewDone=true, true) or alternatively, =true for the 3 checkboxes isn’t necessary i.e. SwitchIf(AdminReviewDone and FinanceReviewDone and LegalReviewDone, true) .

I’m not sure where the Types of Review comes into play in all of this / why you’ve mentioned it, but if it needs to have one of those options to be selected for your Review Process Done column, then the formula would be

SwitchIf(AdminReviewDone and FinanceReviewDone and LegalReviewDone and TypesofReview.isNotBlank(), true).

Hopefully this helps you and if not it would, we as a community could better serve you if you shared a demo doc

Cheers!

Mel

1 Like