I am using the SharePoint List as a database with a title DateStart. When a user enter a number to represent a number of days (eg: 3), I would like to create 3 date records with a starting date based on today. (DateStart (dd/mm/yyyy) should be 6/12/2020, 7/12/2020, 8/2/2020. I have try to the ForAll function and Patch function, and managed to create the datestart 3x times but with the same date 6/12/2020. How do you use the increment in the ForAll loop so the date increase?
Solved! Go to Solution.
No worries, happy to help.
Yes, this is doable, it just becomes a little math problem - with some added on screen logic. The logic I would use is make users pick a certain day of the week to make the math easier eg Monday (you can pick Sunday or another day if you like but I'll work on Monday here).
So, user selects a Monday and the record inside your Patch gets updated to:
Patch(ABC, Defaults(ABC),
// add a Monday record
{RecurrenceDateDaily: DateAdd(DateValue3.SelectedDate, ((Value-1) * 7), Days)},
// add a Thursday record
{RecurrenceDateDaily: DateAdd(DateValue3.SelectedDate, ((Value-1)*7) + 3, Days)}
)
You can use the same ForAll() structure and same counter you setup before.
To check if a user has picked a Monday, put this is a label somewhere (oh, and also Disable/Enable your Save button depending on if a Monday has been chosen or not):
If(Weekday(DateValue3.SelectedDate)<>2,
"Please chosen a Monday date. You cannot Save your data",
"Your data is ready to Save")
Note: Weekday() returns a number from 1-7, Sunday=1 , Monday=2 ...
many thanks for your advice and much appreciated.
How would I go about creating a collection weeks?
Would it be similiar to the collection for DateRange - Date, Day, value but instead WeekRange - Date, Week, value? (where Week is Mon, Tues,......etc?
Your help would be much appreciated.
@SimonDu88 I'm a little unsure of what you are wanting to do here. Could you provide an example?
If it's just a Week vs a Date range, yes you should be able to do it you have set-out. What have you tried?
Stay up tp date on the latest blogs and activities in the community News & Announcements.
Mark your calendars and join us for the next Power Apps Community Call on January 20th, 8a PST
Dive into the Power Platform stack with hands-on sessions and labs, virtually delivered to you by experts and community leaders.
User | Count |
---|---|
207 | |
187 | |
82 | |
54 | |
37 |
User | Count |
---|---|
288 | |
246 | |
119 | |
78 | |
55 |