Forum Discussion

spandy34's avatar
spandy34
Responsive Resident
3 years ago
Solved

Creating Column

Hi 

I want to create a column called 'Needs Action' where a 1 is inserted if Scheduled Date field has a date in it and the Actual Date field is blank.  Can anyone tell me how I would do this please tamerj1 goncalogeraldes 

 

2 Replies

  • Greg_Deckler's avatar
    Greg_Deckler
    Community Champion

    spandy34 Try:

    Column = IF( [ScheduledDate] <> BLANK() && [ActualDate] = BLANK(),"Needs Action",BLANK())
    • spandy34's avatar
      spandy34
      Responsive Resident

      Really appreciate your help . Thanks worked .