What the error it is?

Hello @Kuldeep_Pandey
Check your variable type is in Integer. Change it into String

Because, The word October, cannot be an integer.

HI @Kuldeep_Pandey

Check out the Variable Type in the LHS It has Integer Data Type

Change it into String

image

Regards
Gokul

I m reading a pdf some hava month no and some have month name so i changed month no as month name now its giving me the error in month name pdf its not writing exact month name

How to get month name from all pdf either its have no or name in pdf

Hi @Kuldeep_Pandey

Just Try with this expression

Use Assign activity

DateTime.ParseExact("October",{"M","MM","MMM","MMMM"},System.Globalization.CultureInfo.InvariantCulture,System.Globalization.DateTimeStyles.None).ToString("MMMM")

image

Regards
Gokul

October is not common its changing like sep augus so pls tell me the dynamic exp

HI @Kuldeep_Pandey

It will work dynamically based on the input, But like augus this of sting it will not recognized as the Month

Regards
Gokul