N
NetworkTrade
these work separately
Count1 = DCount("Name", "Table1", "[Name] = '" & Me![Name] & "'")
Count2 = DCount("Place", "Table1", "[Place] = '" & Me![Place] & "'")
But then I realized they were of course counting separately and I really
need one count based on the 2 criteria.....so I tried to glue them together
but it throws a type 13 data mismatch
Count1 = DCount("Name", "Table1", "[Name] = '" & Me![Name] & "'" AND
"[Place] = '" & Me![Place] & "'" )
am baffled at the moment and would welcome assist....TIA
Count1 = DCount("Name", "Table1", "[Name] = '" & Me![Name] & "'")
Count2 = DCount("Place", "Table1", "[Place] = '" & Me![Place] & "'")
But then I realized they were of course counting separately and I really
need one count based on the 2 criteria.....so I tried to glue them together
but it throws a type 13 data mismatch
Count1 = DCount("Name", "Table1", "[Name] = '" & Me![Name] & "'" AND
"[Place] = '" & Me![Place] & "'" )
am baffled at the moment and would welcome assist....TIA