The issue is almost certainly a date type mismatch. Excel stores dates as serial numbers, and Power Apps reads them as text or number, not as a native Date type. So comparing 'Session Date' directly to a DateAdd() result fails because the types don't match.
Try wrapping the column in DateValue() to force the conversion:
Column name spacing. 'Session Date' with a space requires the single-quote syntax. Confirm that the column name in your Excel table matches exactly, including the case.
Excel connection type. If you connected via "Excel Online (Business)," date columns sometimes come through differently than a static upload. Check the actual data type Power Apps infers by looking at the column in the Data panel.
Time components. If the 'Session Date' field stores a datetime that includes a time portion, the equality check will fail even when the dates appear visually identical. Wrap both sides in DateValue() to strip the time.
Thank you!
Proud to be a Super User!
📩 Need more help?
✔️ Don’t forget to Accept as Solution if this guidance worked for you.
💛 Your Like motivates me to keep helping
Was this reply helpful?YesNo
Under review
Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.