Count blank fields from a LEFT JOIN query (1 Viewer)

Kill_Switch

Go Easy I'm New
Local time
Today, 09:02
Joined
Apr 23, 2009
Messages
58
Hello AWF, been a while, but still been lurking.

I've been down so many combinations that I've lost where and what I did.

I have a master list of employee positions. Not all positions are filled by the employees. I wish to count the number of blank positions where an employee is not in to.

The Left Join query pulls correctly, I just want to count the number of blank HRMS (not filled positions). I'll later expand the query to blank positions by their respective trade, mechanic, electrician, etc.

Basically I was a percentage of filled positions. Caveman math below of 2 counts I'm trying to achieve.

Sum = count #of blanks in [HRMS]/sum of [POSITION] *100
Sum = count # of blanks in [HRMS] where [TRADE]="Electrical"/count of [POSITION], where [TRADE]="electrical"



I have 2 tables (relationship below)
- tbl_AER
- tbl_MBR_MASTER
1693482847329.png


Code:
SELECT tbl_AER.POSITION, tbl_MBR_MASTER.HRMS, tbl_AER.JOB_TITLE, , tbl_AER.TRADE
FROM tbl_AER
LEFT JOIN tbl_MBR_MASTER ON tbl_AER.POSITION = tbl_MBR_MASTER.HRMS;

1693483112525.png



Kindest of Regards,
 

Ranman256

Well-known member
Local time
Today, 08:02
Joined
Apr 9, 2015
Messages
4,337
=DCount("*", "qsMyQuery", "[HRMS] is null")
 

plog

Banishment Pending
Local time
Today, 07:02
Joined
May 11, 2011
Messages
11,646
Here's an SQL solution:

Take your existing query and let's call it 'sub1'. Then use the below SQL to get the total blank position ratio:

Code:
SELECT Sum(IIf(IsNull([HRMS]),1,0))/Count([POSITION]) AS BlankFactor
FROM sub1;

Save that query as 'Main'. To get the ratio for just 'Electrical', you add that criteria into 'sub1', save it and then just run 'Main' again.
 

Users who are viewing this thread

Top Bottom