M
MC
Here's my dilemna, I have two tables:
1st table:
[Rec_date], [Num_recieved]
2nd table
[Comp_date],[Num_completed]
I need to know if complete date doesn't equal rec date the # of pending
items per day. So it would create a table like this. if I recieved 100
items on 2/1/06 but didn't do it until 2/3/06 I need it to look like
this
date carryover rec completed items pending
2/1/06 0 100 0 = 100
2/2/06 100 10 10 = 100
2/3/06 100 50 150 = 0
any help would be appreciated
1st table:
[Rec_date], [Num_recieved]
2nd table
[Comp_date],[Num_completed]
I need to know if complete date doesn't equal rec date the # of pending
items per day. So it would create a table like this. if I recieved 100
items on 2/1/06 but didn't do it until 2/3/06 I need it to look like
this
date carryover rec completed items pending
2/1/06 0 100 0 = 100
2/2/06 100 10 10 = 100
2/3/06 100 50 150 = 0
any help would be appreciated