First, I know this is correct but my company will not take on any additional charges right now, even $10/ month for an Azure SQL DB, and this is the only way I know how to update my list.
I have a SharePoint list that stores all items my company distributes and I update every Sunday. Most Sales people aren't using the app on Sundays anyhow but I want to restrict access on Sundays so i can update with no issues. I have a flow that deletes the list and then repopulates the list with current information. Sometimes pricing changes, or we have new items added, old items fall off that we no longer sell.
Can I restrict access, or at the very least disable the buttons on Sundays. I was thinking something like:
If(DayOfWeek(Today()) = 1 && User().email <> myHardCodedEmail, disable, edit)
on the buttons on the main screen, but i wanted to see if there is a way in the admin portal or anything.
My issue is if we sell or promise something that we are no longer ordering because the ranking of an item was discontinued and the salesperson didn't have that updated info.