Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi All
This May be a silly question
I have three tables
A
State
Region
Week
Sales
B
State
Statetxt
C
Region
RegionTxt
I need the result table
State
StateTxt
Region
RegionTxt
Week
Sales
Thanks
Varun
A:
Load * from A.qvd (qvd);
Left join (A)
Load * from B.qvd (qvd);
Left join(A)
Load * from C.qvd (qvd);
A:
Load * from A.qvd (qvd);
Left join (A)
Load * from B.qvd (qvd);
Left join(A)
Load * from C.qvd (qvd);
Use ApplyMap,