I have table like below , there are many number of lines with debit/Credit string and respective amounts in a table , need to bring as expected table like in separate lines of each strings and its respective amounts , how can i achieve this, appreciate your help!
Debit String | Credit String | Debit Amount | Credit Amount |
---|---|---|---|
ING1 | ING2 | 123 | 0 |
INT2 | INT5 | 234 | 0 |
Expected Result is :-
String | Amount |
---|---|
ING1 | 123 |
INT2 | 234 |
ING2 | 0 |
INT5 | 0 |