Skip to main content

Our Effective Date comes across through integrated payload as: 2024-10-01

We are looking to reformat this in the output document to October 1, 2024 

How could we go about doing this?

TIA!!

 

Hello @Pandy 

I hope you are doing great. To convert the effective date, will be in workflow and for which you will need the C# code.

Code: 

DateTime EffeciveDate =  DateTime.Parse(GetVariableValue("Effective_Date"));
string c = (EffectiveDate).ToString("MMMM-dd-yyyy");

return c;


Thanks! Keep me on radar if you need further info. 


Reply