You can easily return the first day of the month in PowerApps with two methods as below:
Using the PowerApps Date function You can use the date function to retrieve the first-day name of the given date
Text(Date(Year(Now()), Month(Now()), 1),"ddd", "en")
using the PowerApps DateAdd function
Text(DateAdd(Today(), -Day(Today()) + 1), "ddd", "en")
For more details, Please check PowerApps Weekday Name- First Day Of Month-Last Day On A Month
1.1k questions
673 answers
454 comments
193k users
Related Activities
Categories
Most popular tags