Dear all,
How can i replace static ”Monday“ with dynamic value according to today's date.
Filter('Home working schedule',"Monday" in Home_working_day.Value)

Dear all,
How can i replace static ”Monday“ with dynamic value according to today's date.
Filter('Home working schedule',"Monday" in Home_working_day.Value)
The Text function can be used to format dates, and we can use custom formats:
Text(Today(),"dddd")
"dddd" = day of the week. "ddd" = day of the week, abbreviated.
You can just swap the above in for the "Monday":
Filter('Home working schedule',Text(Today(),"dddd") in Home_working_day.Value)