Calendar slice

hi, i made a slice in my calendar based on this formula
AND([Completato]=False,[Data]<>“”)

“Completato” means completed, and it’s a yes/no fieldd
Data is “date”, and it’s date field

the first part works, and i see only tasks not completed, but i see tasks with no date too.

Hi ,

Does this expression help,

AND([Completato]=False, ISNOTBLANK([Data]))

2 Likes

Worked