Good evening to everyone,

i have a variable which have a date format
Code:
%tdnn/dd/CCYY
and I want to transform it as YYmm (first 2 digit indicating year and last 2 digit indicating month).

I write an example: I would like to transform from
Code:
01/24/2018 
to
Code:
1801
.

There is a quickly way to do it ? I was thinking to change the format to string, before to do it.

Many thanks in advance for your time.