Help

If field isn't blank, check the box

Topic Labels: Formulas
1539 2
cancel
Showing results for 
Search instead for 
Did you mean: 
czacza2007
4 - Data Explorer
4 - Data Explorer

Hello,

I have a date field and a checkbox field. Can I write a formula that says if there is a date in the date field, check the box in the other field?

Eg “Date Commission Paid” has a date, so “Commission Paid” is ticked?

2 Replies 2

A formula field cannot change the value in a different field. It can only show the value that it computes. You could have the formula field show the check box itself.

IF({Date Commission Paid}, "✔️");

Great, thanks for your reply!