Hello All,
I have an app that captures data daily and stored in a SharePoint List. How do I filter the data to today's date?

I tried the following (I don't know why it is pointing to the data card when there's a field called 'Created')
Lookup('Daily Log'.'Total Donation Received', Created_DataCard = Today())
Also tried the suggestion given by powerapps guide
Filter('Daily Log'.'Total Donation Received', Created_DataCard >= Today(),
Created_DataCard < DateAdd(Today(),1,Days)
But got an error saying "Invalid Argument Type". Expecting one of the following: Number, Date, Time, DateTime
How do I fix this error? Tried other functions to change the Created_DataCard argument type e.g. Text, Date, DateValue etc. but have yet to solve this issue.