I am trying to make a food service app for my organization. where we have a different food menu for each day of the week. Now on the home page, I want to show the current day's food menu.
List of Food Menu
The default view is this.
but I want to show only the current-day menu.
i have trying filter formating
Filter(
'Daily Food Item',
Title = Weekday( Now() ).Text
)
need help to fix this.
Hi @Zubayer ,
What @v-liwei-msft said, but use one extra d:
Filter(
'Daily Food Item',
StartsWith(Title,Text(Now(),"dddd"))
)
Hi @Zubayer
Please try:
Filter(
'Daily Food Item',
StartsWith(Title,Text(Now(),"ddd"))
)
Best Regards,
Levi
Stay up to date on forum activity by subscribing. You can also customize your in-app and email Notification settings across all subscriptions.