Hi @LouisWelker11 ,
Could you tell me the data type of Date and Delivered?
If Date field is datetime type, you could use IsToday() to justify directly. If not, you need to transfer.
If Delivered is choice type and its choice includes "not delivered" , try this:
Filter(listname,IsToday(Date),Delivered.Value="not delivered")
If Delivered is yes or no type, not delivered represent no, try this:
Filter(listname,IsToday(Date),Delivered=0)
//0 represnt false
Best regards,