M
mewins
I am trying to create a query that returns client names regardless if they
have a value in a subtable.
In tblMainClientInfo, I have LastName, FirstName
In tblFundHist, I have Funding
In tblESOLHist, I have CurrentClass (either "yes" or "no") and CurrentCore
(which displays the name of the class)
I would like the query to return all clients grouped together by funding and
to list what value they have in CurrentCore if their CurrentClass="yes". I
can make this work to only show clients who have a value in CurrentCore, but
I'm not sure how to make the records pop up if they don't have a record in
tblESOLHist or if CurrentClass="no."
I tried doing
IIf([tblesolhist].[currentclass]="yes",[tblesolhist].[currentcore]," ") but
this only gives me the records of clients with entries in tblESOLHist.
Ideas? Thanks
have a value in a subtable.
In tblMainClientInfo, I have LastName, FirstName
In tblFundHist, I have Funding
In tblESOLHist, I have CurrentClass (either "yes" or "no") and CurrentCore
(which displays the name of the class)
I would like the query to return all clients grouped together by funding and
to list what value they have in CurrentCore if their CurrentClass="yes". I
can make this work to only show clients who have a value in CurrentCore, but
I'm not sure how to make the records pop up if they don't have a record in
tblESOLHist or if CurrentClass="no."
I tried doing
IIf([tblesolhist].[currentclass]="yes",[tblesolhist].[currentcore]," ") but
this only gives me the records of clients with entries in tblESOLHist.
Ideas? Thanks