Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
select iif(isnull(thecolumn),0,thecolumn)
as thealias
if you switch to the SQL view you will see the SQL statement that was created by the design view. You have to have a SQL statement if you have a query, you just may not be aware of it. If you post that SQL, you will have a greater chance of useful assistance.setup a query using the design view
select tblCompanyInfoTest.Company
, sum(iif(isnull(tblRecruitInfoTest.Gender)
,0,tblRecruitInfoTest.Gender)
as CountOfFemaleRecruits
from tblCompanyInfoTest
let outer
join tblRecruitInfoTest
on (
tblCompanyInfoTest.Company
= tblRecruitInfoTest.StartingCompany
and tblRecruitInfoTest.Gender = 'Female'
)
group
by tblCompanyInfoTest.Company