Recent content by Garuban

  1. G

    Count with multiple criteria (3) on a query

    Yes it needs to remain editable, As of now the formula is working, but taking multiple minutes to run the query, and that's my only concern now Thanks for helping
  2. G

    Count with multiple criteria (3) on a query

    With reduced data it seems to work...
  3. G

    Count with multiple criteria (3) on a query

    Both seem to be true, the EmployeeName field on the query is pulled directly from the gp data table
  4. G

    Count with multiple criteria (3) on a query

    When I ran this it showed me some values: DCount("*","GP Data") And this is how it looks with the first criterion: DCount("*","GP Data","[EmployeeName] = '" & [EmployeeName] & "'")
  5. G

    Count with multiple criteria (3) on a query

    So removing tbl from the equation starts giving me values but if I add the first criteria the Query gets stuck loading for some reason and access crashes
  6. G

    Count with multiple criteria (3) on a query

    Yeah the table is 'GP Data', the tbl is because I saw some solution in this forum and it was like that. Regarding your solution, it works almost perfectly lol, because it shows me 1 line with the occurrences and how many occurrences are in the table, but for my query I need it to show me for...
  7. G

    Count with multiple criteria (3) on a query

    That gives me an error
  8. G

    Count with multiple criteria (3) on a query

    On a calculated field on a query
  9. G

    Count with multiple criteria (3) on a query

    Hi All, I've been trying to create a formula that can count based on 3 criteria, until now this is the formula that I got but is showing me blank cells DCount("*","TblGP Data","EmployeeName = '" & [EmployeeName] & "' and Recruiter = '" & [GP Data].[Recruiter] & "' and [Week End Date] =# " &...
Top Bottom