Comment
Parth10243
Tera Contributor
- Mark as Read
- Mark as New
- Bookmark
- Permalink
- Report Inappropriate Content
12-07-2022
10:57 PM
Hi Brian,
This could be a way to execute the flow on last weekday (for example monday) of a month
var gd = new GlideDateTime();
var gdt = new GlideDateTime();
gdt.addDays(7);
if (gd.getMonth() != gdt.getMonth()){
return true;
}else{
return false;
}