Flow designer

kali
Tera Contributor

Hi All,

 

I have a date field , my ask is that my flow designer should run on the particular date field  .  Is there any actions for this? Thanks in advance

9 REPLIES 9

Samaksh Wani
Giga Sage
Giga Sage

Hello @kali 

 

You need to use Flow Logic in your flow designer, it will act as a Condition, in which you can give Particular date in if statement, and add your action in then.

 

Plz Mark my Solution as Accept and Give me thumbs up, if you find it helpful.

 

Regards,

Samaksh

Mohith Devatte
Tera Sage
Tera Sage

Hello @kali ,

you can either use trigger conditions for flow using below options 

OR 

you can use a flow logic and use a IF action and check on the date field condition via script 

Screenshot 2023-08-14 at 15.33.08.png

 

Hope this helps 

Mark my answer correct if this helps you 

Thanks

Hi Mohith,

Explain more on the date field condition via scrip 

Hello @kali 

 

 

var particularDate = new GlideDate("2023-08-15");
var dateF = fd_data_trigger.current.date_field;
if(dateF == particularDate){
return true;
}

 

 

Plz Mark my Solution as Accept and Give me thumbs up, if you find it helpful.

 

Regards,

Samaksh