I'm trying to set up a column based on a count(iif select query which counts how many cells match with the single item. So essentially: count(iif(table1.column2<=table2.column3,1,0)
If anyone could help please, thanks! I've tried writing up a query, but then I get aggregate issues.
So if for example one
Table 1 __________________________Table2
Employee Pay _____________________column 1 __pay beg ______end
1 _______15 ________________________x ________12 ________15
2 _______20 ________________________x ________16 ________18
3 _______25 ________________________x ________19 ________21
The result should be
Employee Pay __count
1 _______15____2
2 _______20 ____1
3 _______25_____0