Heya folks. Thank for any assistance. Ok here is my issue.
I have 3 tables A, B, C.
Field [location] is left outer joined with a [location] field in each of tables B and C (don't ask why they aren't all in the same table I work with what I got).
I need a formula that will take [location] and [date] in table B and see if they are BOTH null or "" and if they are to return [limit] from table C but ONLY if the corresponding [location][date] combination in table C has a null or "" [date] field.
Confused yet? Here is an example
Table A:
Location
1
2
3
4
Table B
Location: Date: Limit:
1 10000
3 12000
Table C: Date: Limit:
2 2-2-02 10000
2 12000
4 14000
The output should look like this:
Location: Limit:
1 10000
2 12000
3 12000
4 14000
But I get:
1 10000
2 10000
2 12000
3 12000
4 14000
I hope I was clear. Thanks for your help.
I have 3 tables A, B, C.
Field [location] is left outer joined with a [location] field in each of tables B and C (don't ask why they aren't all in the same table I work with what I got).
I need a formula that will take [location] and [date] in table B and see if they are BOTH null or "" and if they are to return [limit] from table C but ONLY if the corresponding [location][date] combination in table C has a null or "" [date] field.
Confused yet? Here is an example
Table A:
Location
1
2
3
4
Table B
Location: Date: Limit:
1 10000
3 12000
Table C: Date: Limit:
2 2-2-02 10000
2 12000
4 14000
The output should look like this:
Location: Limit:
1 10000
2 12000
3 12000
4 14000
But I get:
1 10000
2 10000
2 12000
3 12000
4 14000
I hope I was clear. Thanks for your help.