Hello,
i hope anyone have an idea for my problem.
I have a sharepoint list with date fields date_from an date_to.
I want to check in powerapps if today's date is within date_from and date_to. The challenge is that I only want to check the day and month and not the year
Example:
date_from: 01.10
date_to: 01.03
--> But the Datefield in Sharepoint is with years
There are 2 problems here.
1. I only need day and month
2. As in my example, this can also be year-round
My example Formula:
Filter (SharePointList; date_from> = today () and date_to <= Today ())
Maybe someone has an idea how to do that