Months in Dutch

Can someone help me getting the months in the Dutch language.
I converted the date to dd-MMMM-yyyy so i am getting like 1-May-2019 but i need the Dutch month name not the English one.Main.xaml (26.2 KB)

Hi @438654,

You can use cultureInfo to print the month in the language of your choise:

image

Thanks and best regards,
Susana

4 Likes

the month still prints in English. I used startdatum.ToString(“dd-MMMM-yyyy”,cultureinfo_dutch) any idea how this is possible? startdatum is my variable and is an GenericValue.

hi @438654,

you have to use datetime variable not the generic value.
can you change your generic value as datetime in datatype section as shown in image. and then use like

or if you want to use generic value use below…

and you convert like this
image

output is

image

1 Like

The reason that it is Generic is because the date is coming from an Excel file

still you can use my method which i mentioned

1 Like

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.