29 June 2021
Power Apps - Date of week
Technical article about Power Apps - Date of week
app-canvas
date-of-week
low-code
pills
switch
weekday
0 min read
Technical article about Power Apps - Date of week
Hi! let’s see a simple way to show name of day of week. There isn’t “built in function” get name, but we can use Weekday(Date) function to get numer of day and use it to show name:
Switch( Weekday(Now()), 1, “Sunday”, 2, “Monday”, 3, “Tuesday”, 4, “Wednesday”, 5, “Thursday”, 6, “Friday”, 7, “Saturday” )
You can change Today() with your date and get name of week.
I hope it help you…Have a good day!