I have two Import and Export tables as shown below;
Import |Style | Color | Qty |
--------------|-------|------
1/2/03 | A201 | Red | 100
1/9/03 | A201 | Red | 20
1/4/03 | B204 | White | 80
1/7/03 | A201 | Red | 100
1/1/03 | C102 | Green | 100
Export | Style | Color | Qty
---------------|------------
4/2/04 | A201 | Red | 100
4/9/04 | A201 | Red | 100
4/2/05 | B204 | White | 80
5/3/05 | B204 | White | 100
6/2/04 | D402 | Blue | 100
I want to match the data based on the "Style" and "Color", so my tables have no index keys and they are related by draging the "Style" of Import and dumpping it onto the "Style" of the "Export". How am I doing? and Please give me an idea of how to create the following table please.
Import|Style| Color| Qty | Export|Style| Color| Qty
----------------------------------------------------
1/2/03| A201| Red | 100 | 1/2/04| A201| Red | 100
1/3/03| A201| Red | 20 | 1/9/04| A201| Red | 100
1/4/03| A201| Red | 100 | * * * * * * * * * * * *
1/2/03| B204| White| 80 | 1/2/05| B204| White| 100
* * * * * * * * * * * * | 1/2/04| B204| White| 80
Thanks.
Import |Style | Color | Qty |
--------------|-------|------
1/2/03 | A201 | Red | 100
1/9/03 | A201 | Red | 20
1/4/03 | B204 | White | 80
1/7/03 | A201 | Red | 100
1/1/03 | C102 | Green | 100
Export | Style | Color | Qty
---------------|------------
4/2/04 | A201 | Red | 100
4/9/04 | A201 | Red | 100
4/2/05 | B204 | White | 80
5/3/05 | B204 | White | 100
6/2/04 | D402 | Blue | 100
I want to match the data based on the "Style" and "Color", so my tables have no index keys and they are related by draging the "Style" of Import and dumpping it onto the "Style" of the "Export". How am I doing? and Please give me an idea of how to create the following table please.
Import|Style| Color| Qty | Export|Style| Color| Qty
----------------------------------------------------
1/2/03| A201| Red | 100 | 1/2/04| A201| Red | 100
1/3/03| A201| Red | 20 | 1/9/04| A201| Red | 100
1/4/03| A201| Red | 100 | * * * * * * * * * * * *
1/2/03| B204| White| 80 | 1/2/05| B204| White| 100
* * * * * * * * * * * * | 1/2/04| B204| White| 80
Thanks.