Hello Ian and Lbass,
I took both of your suggestions. Here is what I did:
- Used the following SQL:
select BU as "Entity", 'A' as "Type",Affiliate as "Entity2", Amount
from Mytable
union
select Affiliate as "Entity", 'B' as "Type", BU as "Entity2", Amount
from Mytable
This results in the...