SELECT well, DateSerial([year], 1, 1) As TheDate, Jan As TheData FROM
tableName
UNION ALL
SELECT well, DateSerial([year], 2, 1), Feb FROM tableName
UNION ALL
SELECT well, DateSerial([year], 3, 1), Mar FROM tableName
UNION ALL
SELECT well, DateSerial([year], 4, 1), Apr FROM tableName
UNION ALL
SELECT well, DateSerial([year], 5, 1), May FROM tableName
UNION ALL
SELECT well, DateSerial([year], 6, 1), Jun FROM tableName
UNION ALL
SELECT well, DateSerial([year], 7, 1), Jul FROM tableName
UNION ALL
SELECT well, DateSerial([year], 8, 1), Aug FROM tableName
UNION ALL
SELECT well, DateSerial([year], 9, 1), Sept FROM tableName
UNION ALL
SELECT well, DateSerial([year], 10, 1), Oct FROM tableName
UNION ALL
SELECT well, DateSerial([year], 11, 1), Nov FROM tableName
UNION ALL
SELECT well, DateSerial([year], 12, 1), Dec FROM tableName
is a possible solution.
Vanderghast, Access MVP