How to display only year, month, day, hours and minutes with a DateTime node?

I can get it to work but I don’t want to show the seconds, and if i could get rid of the AM/PM it would be great too

The best way is to format it yourself. Break the DateTime struct, which gives you its own pins. Then convert the pins to Text, which gives you the nice ToText nodes which give you all the options for padding, ie min int to 2 makes numbers look nicer. Then run into a format Text node and put them all together with your desired delimeter ie :

I do this all the time and usually once Iv done it once il collapse that into a function, ideally in a seperate blueprint function library so i have a single function for converting datetime into my project desired formatting