My goal is to create a new variable made of the variables %Year%, %Month% and %Day%. %Year% and %Day% are strings and %Month% is an integer.
This is what I have so far, but it doesn't work. How can I concatenate everything? I think the issue is the comma.
SET /A New_date = %Year%, %Month%, %Day%
Echo date:%New_date%