Skip to main content
I want to build two custom fields...

 

1) If Task is checked then field Equals Task

 

2) If Task is not checked then field equals Event

 

Any ideas
4 件の回答
  1. 2016年7月15日 15:21
    Nate, 

     

    if you want to create two fields then it would be something like this.

     

    Field 1 for Task :

    IF(IsTask==True,'Task','')

     

    Field 2 for Event:

     

     

    IF(Task==False,'Event','')

     

    Thanks
0/9000