I have multiple rows which i want to convert it into single column: For exa : Table1
ID Field1 Field2 Field3
1 A B C
2 D A null
3 B null null
Result should be like below :
Field1
A
B
C
D
A
B
Please suggest how can we convert it into Ms access query or VBScript or any other way we can get the result in Ms access. Thanks in advance.