Forum Discussion
spandy34
3 years agoResponsive Resident
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 ...
- 3 years ago
spandy34 Try:
Column = IF( [ScheduledDate] <> BLANK() && [ActualDate] = BLANK(),"Needs Action",BLANK()) - 3 years ago
Really appreciate your help . Thanks worked .
Greg_Deckler
3 years agoCommunity Champion
spandy34 Try:
Column = IF( [ScheduledDate] <> BLANK() && [ActualDate] = BLANK(),"Needs Action",BLANK())spandy34
3 years agoResponsive Resident
Really appreciate your help . Thanks worked .