BroncoMarc
Registered User.
- Local time
- Today, 19:25
- Joined
- Apr 4, 2002
- Messages
- 43
I've got 2 tables.. One with sales history and one with sales forecast. I'm trying to use a query to combine them. I've got joins set up with the common info (customer name, product) so it shows me history and forecast info at the same time in the result.
My problem is that we have some things that we have a history for, but we don't have forecasts for, and some things that we have forecasts for that we don't have history for.
I've got 3 choices with my joins:
#1: I can do a standard join, but then I only show common data and it cuts of things I don't have a history for or don't have a forecast for.
#2: I can do a join so it shows all history data and only forecast data that matches, but then it cuts off forecast data that there is no history for.
#3: I can do a join so it shows all forecast data and only history data that matches, but then it cuts off history data that there is no forecast for.
Each one of these cuts off records. How can I set it up so it doesn't cut anything off?
Thanks,
- Marc
My problem is that we have some things that we have a history for, but we don't have forecasts for, and some things that we have forecasts for that we don't have history for.
I've got 3 choices with my joins:
#1: I can do a standard join, but then I only show common data and it cuts of things I don't have a history for or don't have a forecast for.
#2: I can do a join so it shows all history data and only forecast data that matches, but then it cuts off forecast data that there is no history for.
#3: I can do a join so it shows all forecast data and only history data that matches, but then it cuts off history data that there is no forecast for.
Each one of these cuts off records. How can I set it up so it doesn't cut anything off?
Thanks,
- Marc