I am trying to determine how many rows I have in my recordset. Usually, I will use the following:
tempnum = DCOUNT("*", TableName, "Table_ID = " & 4)
I am using a recordset that involves 3 tables, but I want to know how many values I am pulling over. Is there anyway to say:
tempnum = DCOUNT("*", MyRecSet)
I tried MyRecSet.RecordCount, but that displayed 1 every time and not the value that it should have. Any ideas? Thanks!
tempnum = DCOUNT("*", TableName, "Table_ID = " & 4)
I am using a recordset that involves 3 tables, but I want to know how many values I am pulling over. Is there anyway to say:
tempnum = DCOUNT("*", MyRecSet)
I tried MyRecSet.RecordCount, but that displayed 1 every time and not the value that it should have. Any ideas? Thanks!