You can concatenate together your Character Worksheet column with your Numeric Date column by using the following formula
:Character Worksheet || "_" || Format(
:Numeric Date,
"ddMonyyyy",
9
)
or in using the Concat() function
Concat( :Character Worksheet, "_",
Format( :Numeric Date, "ddMonyyyy", 9 )
);
The Format() function returns the date as a character string
Jim