Hi all,

I am trying to put the day, month and year columns in one column.

So the format is as follows:
day = 1
month = 1
year = 1992

My command is:
gen interview = day, month, year (doesn't work)
gen interview = day/month/year (the variable is in 0.0000939 format)

What could possibly be the reason? Does the type (byte, float, int, double) of the (day, month, year) matter? Do I need to change the format of the day, month, year? Any help will be greatly appreciated.