ItIsHardToProgram
Technical User
Hey, I am not sure what section is best to start this thread, but I believe the solution to my problem will reside in queries...
Let me start off by explaining what I have.
I currently have a database that stores the number of hours an employee spends on a specific project (in access). The storage is done through excel, with a VBA fonction and an ADO recordset.
Everything on that part works fine, data is stored correctly etc...
But as you can imagine, this sort of system creates "trash" data, if an employee does a mistake or what ever.
So, to remove this trash data, I take the data from access, paste it in excel, compare it to filtered data from what was paid (another excel sheet) and filter and remove everything unecessery and change what wasnt entered correctly.
In that process, once I am done, I paste back all the data into access, (column by column since it doesnt let me paste it as a whole.) --> Before doing so I make sure all data is numbers
The problem is the following:
When I paste the data from Excel to acess, access does not seem to process it has numbers, even though my field is numbers only, it seem to only recognize what was entered through the ADO recordset, and not what is pasted. (don't know if this is a normal behaviour or if this is what is happening... ).
The result: For 5400 hours worked, access only processes 1700 in my queries, thus resulting in big margins.
[blue] 1:I would first of all like to know if this is in fact my problem, if I can do anything to explain more please mention.
2:If this is my problem, is there any way to fix this, in order to have no margins between what I have entered and the Actual data.[/blue]
[Red]The way I verified data integrity:[/red]
I started by pasted all data in access in a excel sheet, I then convert all to number, since it automaticaly stores back in text, and then I summarized the numbers, gives me a total of 5400.
I then run the following query:
I have a margin of over 3K hours.
I tried taking the numbers in excel and pasting them back once converted, no joy.
Thanks ALOT for your help, it is much appreciated.
"Knowing that you know is the greatest sign of stupidity, knowing that you are ignorant is the best proof of intelligence.
Let me start off by explaining what I have.
I currently have a database that stores the number of hours an employee spends on a specific project (in access). The storage is done through excel, with a VBA fonction and an ADO recordset.
Everything on that part works fine, data is stored correctly etc...
But as you can imagine, this sort of system creates "trash" data, if an employee does a mistake or what ever.
So, to remove this trash data, I take the data from access, paste it in excel, compare it to filtered data from what was paid (another excel sheet) and filter and remove everything unecessery and change what wasnt entered correctly.
In that process, once I am done, I paste back all the data into access, (column by column since it doesnt let me paste it as a whole.) --> Before doing so I make sure all data is numbers
The problem is the following:
When I paste the data from Excel to acess, access does not seem to process it has numbers, even though my field is numbers only, it seem to only recognize what was entered through the ADO recordset, and not what is pasted. (don't know if this is a normal behaviour or if this is what is happening... ).
The result: For 5400 hours worked, access only processes 1700 in my queries, thus resulting in big margins.
[blue] 1:I would first of all like to know if this is in fact my problem, if I can do anything to explain more please mention.
2:If this is my problem, is there any way to fix this, in order to have no margins between what I have entered and the Actual data.[/blue]
[Red]The way I verified data integrity:[/red]
I started by pasted all data in access in a excel sheet, I then convert all to number, since it automaticaly stores back in text, and then I summarized the numbers, gives me a total of 5400.
I then run the following query:
Code:
SELECT tblTimeSheet.IdProjet AS Expr1, Sum(tblTimeSheet.Lundi+tblTimeSheet.Mardi+tblTimeSheet.Mercredi+
tblTimeSheet.Jeudi+tblTimeSheet.Vendredi+tblTimeSheet.Samedi+tblTimeSheet.
Dimanche+tblTimeSheet.LundiRD+tblTimeSheet.MardiRD+tblTimeSheet.
MercrediRD+tblTimeSheet.JeudiRD+tblTimeSheet.VendrediRD+tblTimeSheet.
SamediRD+tblTimeSheet.DimancheRD) AS TotalTemps
FROM tblTimeSheet
GROUP BY TblTimeSheet.IdProjet;
I have a margin of over 3K hours.
I tried taking the numbers in excel and pasting them back once converted, no joy.
Thanks ALOT for your help, it is much appreciated.
"Knowing that you know is the greatest sign of stupidity, knowing that you are ignorant is the best proof of intelligence.