S
stevieb
Hi,
I have data stored in Table1 as such (Field names on row 1):
Id - Type1 - Type2
123 - 0 - 50
456 - 10 - 100
789 - 50 - 0
And I would like to output it as such (Field names on row 1):
Id - Type - Amount
123 - Type1 - 50
456 - Type1 - 10
456 - Type2 - 100
789 - Type1 - 50
I will have more the 20 Types in my actual table, so I can't just make
compounded queries. Any help is appreciated, thanks!
I have data stored in Table1 as such (Field names on row 1):
Id - Type1 - Type2
123 - 0 - 50
456 - 10 - 100
789 - 50 - 0
And I would like to output it as such (Field names on row 1):
Id - Type - Amount
123 - Type1 - 50
456 - Type1 - 10
456 - Type2 - 100
789 - Type1 - 50
I will have more the 20 Types in my actual table, so I can't just make
compounded queries. Any help is appreciated, thanks!