I have a dates on spanish “17-dic-24” and I’m trying to change into “dd.MM.yyyy” format. I am testing with this expression "DateTime.ParseExact([variable], “dd-MMM-yy”, System.Globalization.CultureInfo.CreateSpecificCulture(“es-ES”)).ToString(“dd.MM.yyyy”) but I received this mistake “Assign: String ‘’ was not recognized as a valid DateTime.”.
I noticed when I tested one expression to give me the date in Spanish the system gave me like this “17-dic.-24” with a dot after the month, when I put the dot on my variable it works perfectly, but the variable comes from the input file.
Any idea to solve the problem ??