Hii,
There is date field in form
check wether date in form and current date has difference of 30 days?
if condition not fulfilled then it should delay untill having difference of 30 days.
Solved! Go to Solution.
Hi @Tejaswini1234 ,
Have you tried the solution above?
You can try this:
If(DateDiff(datepicker.SelectedDate,Today(),Days) <> 30, ThenResult , DefaultResult ) or in your case
If(DateDiff(datepicker.SelectedDate,Today(),Days) <> 30, Delay)
Best of luck mate!
----------------------------------------------------------------------------
Thanks,
K-A-R-L
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
If you thought this post was helpful, please give it a Thumbs Up.
In PowerApps to check date difference use
DateDiff(datepicker.SelectedDate,Today(),Days)
Regards,
Reza Dorrani
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly
Hi @Tejaswini1234 ,
Have you tried the solution above?
You can try this:
If(DateDiff(datepicker.SelectedDate,Today(),Days) <> 30, ThenResult , DefaultResult ) or in your case
If(DateDiff(datepicker.SelectedDate,Today(),Days) <> 30, Delay)
Best of luck mate!
----------------------------------------------------------------------------
Thanks,
K-A-R-L
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
If you thought this post was helpful, please give it a Thumbs Up.
Hi @Tejaswini1234 ,
Do you mean that you want to check the date field and if it is <30 then modify the date to =30?
Try this formula:
ClearCollect(test,
AddColumns(
Filter(tablename, DateDiff(datefieldname,Now())<30), //filter the items that datediff<30
"newdate",datefieldname+30 //add a newdate= olddate+30
)
)
ForAll(test,Patch(tablename,LookUp(tablename,ID=test[@ID]),
{datefieldname:newdate}
) //modify multiple records at once
Please replace the tablename ,datefieldname with the name that you use.
Best regards,
Community Support Team _ Phoebe Liu
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 |
---|---|
196 | |
176 | |
62 | |
34 | |
32 |
User | Count |
---|---|
343 | |
271 | |
112 | |
75 | |
59 |