Hi everyone,
I am working with a query where I am joining two tables. One table has all 51 states and a person's name associated with that state. The second table has two fields - state and count (count is associated with clients within the state, if that is relevant at all). Not every state is included in the second table, specifically those with no clients. I want to join the two tables so I have a list of 51 states, the person's name associated with that state, and then the count (even if it is null). My results would look like this:
AK Bob Smith 45
AL John Doe
AR Kate Jones 10
.....
and so on, for all 51 states. Does anyone know of an easy way to do this?
Thanks!
I am working with a query where I am joining two tables. One table has all 51 states and a person's name associated with that state. The second table has two fields - state and count (count is associated with clients within the state, if that is relevant at all). Not every state is included in the second table, specifically those with no clients. I want to join the two tables so I have a list of 51 states, the person's name associated with that state, and then the count (even if it is null). My results would look like this:
AK Bob Smith 45
AL John Doe
AR Kate Jones 10
.....
and so on, for all 51 states. Does anyone know of an easy way to do this?
Thanks!