Date time format change

when entering date variable its returning dd/mm/yy HH:MM:SS I just want date in the forma of dd-mm-yy or dd:mm:yy

my coding is
date.now.tostring(“dd-mm-yy”)

2019-10-28_14h44_29

1 Like

hope this expression would helpyou resolve this
“yourfilenamewithoutextension”+“_”+Now.ToString(“dd_MM_yyyy”)+“.pdf”

Cheers @WillBrown


sorry I should have added this in the first one?
Under Time is my variable with the string what should I change this to so it returns just the date not the date and time and in the format I need so I can save it?

we dont need that variable buddy
directly in TYPE INTO activity we can mention this expression
“yourfilenamewithoutextension”+“_”+Now.ToString(“dd_MM_yyyy”)+“.pdf”

Cheers @WillBrown

perfect this is a fix but is there a way I can have this set as a variable? so its easier and quicker to use?

yah of course we can
like mention this Now.ToString(“dd_MM_yyyy”) in a string variable and use that in the expression like this
“yourfilenamewithoutextension”+“_”+variablename.ToString+“.pdf”

Cheers @WillBrown

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