Skip to main content
Solved

Reformat date from MM/DD/YYY from incoming payload to long date

  • September 23, 2024
  • 1 reply
  • 37 views

Pandy
New Voice
Forum|alt.badge.img+4

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!!

 

Best answer by Pawan Gangwani

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. 

View Original
Is this content helpful?

1 reply

Pawan Gangwani
Rising Star
Forum|alt.badge.img+13
  • Rising Star
  • 404 replies
  • Answer
  • September 27, 2024

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.