Hello. I'm creating a querie that lists all employee activity. So the querie
runs onver a table that has all In and Out of the employees registries.
Sometimes in the the first day is Out, it happens because the employee
forgets to register is Out of job. So, is it possible to remove that register
in order to have the first register of the day has a IN? Even better was
changing the date of that Out register to the previous date.
This is ok to happen because the door don't open if the empoyee don't make
all register regular. So in the new day if a Out is no detected on the system
is like the employee never Out. So before he can In he must register Out. :)
Imagine that I have this:
---------------------------------------------------------------------------------
Employe No. Date Time Description
1010 15-05-2007 08:00 OUT
1010 15-05-2007 08:01 IN
1010 15-05-2007 18:00 Out
and I need this:
--------------------------------------------------------------------------
Employe No. Date Time Description
1010 15-05-2007 08:01 IN
1010 15-05-2007 18:00 Out
This error hapens when the software detects this:
------------------------------------------------------------------------
Employe No. Date Time Description
1010 14-05-2007 08:01 IN
This means that in 15th May the employee must register the Out to be able to
In.
Any idea? Please help.
Regards,
Marco
|
|
0
|
|
|
|
Reply
|
Utf
|
5/26/2007 12:06:00 AM |
|
Hi Marco
My examples below use a table name of tblRegister with columns of
EmployeeNo, RegDate, RegTime and Description.
Obviously, change these to your own. It is not recommended to use table or
column names with spaces or to use reserved words like date or time.
Make a backup of your table BEFORE trying these!
If you want to delete the rows use something like,
delete * from tblRegister
where Description = "OUT"
and RegTime = dmin("RegTime", "tblRegister", "EmployeeNo = " & EmployeeNo &
" and RegDate = " & format(RegDate, "\#mm\/dd\/yyyy\#"))
If you want to update them...
update tblRegister
set RegDate = dateadd("d", -1, RegDate), RegTime = "23:59"
where Description = "OUT"
and RegTime = dmin("RegTime", "tblRegister", "EmployeeNo = " & EmployeeNo &
" and RegDate = " & format(RegDate, "\#mm\/dd\/yyyy\#"))
Note: I used a time of 23:59 as we don't know the real time they left and,
presumably, we want it to be after any other times registered. You can change
this and / or make the query calculate a time if you need to.
And the date gets set to the day before but you might need to do a bit more
here if yesterday wasn't the last day they were in.
Also, the above work for all dates in the table - you may want to restrict
it to today or the latest.
Hope this helps
Regards
Andy Hull
"Marco" wrote:
> Hello. I'm creating a querie that lists all employee activity. So the querie
> runs onver a table that has all In and Out of the employees registries.
> Sometimes in the the first day is Out, it happens because the employee
> forgets to register is Out of job. So, is it possible to remove that register
> in order to have the first register of the day has a IN? Even better was
> changing the date of that Out register to the previous date.
>
> This is ok to happen because the door don't open if the empoyee don't make
> all register regular. So in the new day if a Out is no detected on the system
> is like the employee never Out. So before he can In he must register Out. :)
>
> Imagine that I have this:
> ---------------------------------------------------------------------------------
> Employe No. Date Time Description
> 1010 15-05-2007 08:00 OUT
> 1010 15-05-2007 08:01 IN
> 1010 15-05-2007 18:00 Out
>
> and I need this:
> --------------------------------------------------------------------------
> Employe No. Date Time Description
> 1010 15-05-2007 08:01 IN
> 1010 15-05-2007 18:00 Out
>
>
>
> This error hapens when the software detects this:
> ------------------------------------------------------------------------
> Employe No. Date Time Description
> 1010 14-05-2007 08:01 IN
>
> This means that in 15th May the employee must register the Out to be able to
> In.
>
> Any idea? Please help.
>
> Regards,
> Marco
>
>
|
|
0
|
|
|
|
Reply
|
Utf
|
5/26/2007 6:01:01 PM
|
|
Hi. Very kind from you. Thanks.
I will try and then I let you know. If something goes wrong can I came here
with again?
By the way. the discription of the OUT can be diferent? Such as "AUTO OUT"
Once again thanks.
King regards,
Marco
"Andy Hull" wrote:
> Hi Marco
>
> My examples below use a table name of tblRegister with columns of
> EmployeeNo, RegDate, RegTime and Description.
>
> Obviously, change these to your own. It is not recommended to use table or
> column names with spaces or to use reserved words like date or time.
>
> Make a backup of your table BEFORE trying these!
>
> If you want to delete the rows use something like,
>
> delete * from tblRegister
> where Description = "OUT"
> and RegTime = dmin("RegTime", "tblRegister", "EmployeeNo = " & EmployeeNo &
> " and RegDate = " & format(RegDate, "\#mm\/dd\/yyyy\#"))
>
> If you want to update them...
>
> update tblRegister
> set RegDate = dateadd("d", -1, RegDate), RegTime = "23:59"
> where Description = "OUT"
> and RegTime = dmin("RegTime", "tblRegister", "EmployeeNo = " & EmployeeNo &
> " and RegDate = " & format(RegDate, "\#mm\/dd\/yyyy\#"))
>
> Note: I used a time of 23:59 as we don't know the real time they left and,
> presumably, we want it to be after any other times registered. You can change
> this and / or make the query calculate a time if you need to.
>
> And the date gets set to the day before but you might need to do a bit more
> here if yesterday wasn't the last day they were in.
>
> Also, the above work for all dates in the table - you may want to restrict
> it to today or the latest.
>
> Hope this helps
>
> Regards
>
> Andy Hull
>
>
> "Marco" wrote:
>
> > Hello. I'm creating a querie that lists all employee activity. So the querie
> > runs onver a table that has all In and Out of the employees registries.
> > Sometimes in the the first day is Out, it happens because the employee
> > forgets to register is Out of job. So, is it possible to remove that register
> > in order to have the first register of the day has a IN? Even better was
> > changing the date of that Out register to the previous date.
> >
> > This is ok to happen because the door don't open if the empoyee don't make
> > all register regular. So in the new day if a Out is no detected on the system
> > is like the employee never Out. So before he can In he must register Out. :)
> >
> > Imagine that I have this:
> > ---------------------------------------------------------------------------------
> > Employe No. Date Time Description
> > 1010 15-05-2007 08:00 OUT
> > 1010 15-05-2007 08:01 IN
> > 1010 15-05-2007 18:00 Out
> >
> > and I need this:
> > --------------------------------------------------------------------------
> > Employe No. Date Time Description
> > 1010 15-05-2007 08:01 IN
> > 1010 15-05-2007 18:00 Out
> >
> >
> >
> > This error hapens when the software detects this:
> > ------------------------------------------------------------------------
> > Employe No. Date Time Description
> > 1010 14-05-2007 08:01 IN
> >
> > This means that in 15th May the employee must register the Out to be able to
> > In.
> >
> > Any idea? Please help.
> >
> > Regards,
> > Marco
> >
> >
|
|
0
|
|
|
|
Reply
|
Utf
|
5/27/2007 2:27:00 PM
|
|
Hi. In both example returns me the message "Unknown"
In delete I used:
delete * from 2_tbl_Actual_Historico_Almoco
where Descricao = "Saída Torniquete 2"
and Hora_GE = dmin("Hora_GE", "2_tbl_Actual_Historico_Almoco",
"EmployeeNumber = " & EmployeeNumber &
" and Data_Ge = " & format(Data_GE, "\#dd\/mm\/yyy\#"))
and in update I used:
update 2_tbl_Actual_Historico_Almoco
set Data_GE = dateadd("d", -1, Data_GE), Hora_GE = "23:59"
where Descricao1 = "Saída Torniquete 2"
and Hora_GE = dmin("Hora_GE", "2_tbl_Actual_Historico_Almoco",
"EmployeeNumber = " & EmployeeNumber &
" and Data_GE = " & format(Data_GE, "\#dd\/mm\/yyyy\#"))
I had to made some changes because our date starts with Days and then months.
Any idea?
Regards,
Marco
"Andy Hull" wrote:
> Hi Marco
>
> My examples below use a table name of tblRegister with columns of
> EmployeeNo, RegDate, RegTime and Description.
>
> Obviously, change these to your own. It is not recommended to use table or
> column names with spaces or to use reserved words like date or time.
>
> Make a backup of your table BEFORE trying these!
>
> If you want to delete the rows use something like,
>
> delete * from tblRegister
> where Description = "OUT"
> and RegTime = dmin("RegTime", "tblRegister", "EmployeeNo = " & EmployeeNo &
> " and RegDate = " & format(RegDate, "\#mm\/dd\/yyyy\#"))
>
> If you want to update them...
>
> update tblRegister
> set RegDate = dateadd("d", -1, RegDate), RegTime = "23:59"
> where Description = "OUT"
> and RegTime = dmin("RegTime", "tblRegister", "EmployeeNo = " & EmployeeNo &
> " and RegDate = " & format(RegDate, "\#mm\/dd\/yyyy\#"))
>
> Note: I used a time of 23:59 as we don't know the real time they left and,
> presumably, we want it to be after any other times registered. You can change
> this and / or make the query calculate a time if you need to.
>
> And the date gets set to the day before but you might need to do a bit more
> here if yesterday wasn't the last day they were in.
>
> Also, the above work for all dates in the table - you may want to restrict
> it to today or the latest.
>
> Hope this helps
>
> Regards
>
> Andy Hull
>
>
> "Marco" wrote:
>
> > Hello. I'm creating a querie that lists all employee activity. So the querie
> > runs onver a table that has all In and Out of the employees registries.
> > Sometimes in the the first day is Out, it happens because the employee
> > forgets to register is Out of job. So, is it possible to remove that register
> > in order to have the first register of the day has a IN? Even better was
> > changing the date of that Out register to the previous date.
> >
> > This is ok to happen because the door don't open if the empoyee don't make
> > all register regular. So in the new day if a Out is no detected on the system
> > is like the employee never Out. So before he can In he must register Out. :)
> >
> > Imagine that I have this:
> > ---------------------------------------------------------------------------------
> > Employe No. Date Time Description
> > 1010 15-05-2007 08:00 OUT
> > 1010 15-05-2007 08:01 IN
> > 1010 15-05-2007 18:00 Out
> >
> > and I need this:
> > --------------------------------------------------------------------------
> > Employe No. Date Time Description
> > 1010 15-05-2007 08:01 IN
> > 1010 15-05-2007 18:00 Out
> >
> >
> >
> > This error hapens when the software detects this:
> > ------------------------------------------------------------------------
> > Employe No. Date Time Description
> > 1010 14-05-2007 08:01 IN
> >
> > This means that in 15th May the employee must register the Out to be able to
> > In.
> >
> > Any idea? Please help.
> >
> > Regards,
> > Marco
> >
> >
|
|
0
|
|
|
|
Reply
|
Utf
|
5/27/2007 4:51:01 PM
|
|
Hi. Check my last post "Delete record if a specific value is the first of the
day"
My explanation is best there.
Regards
"Andy Hull" wrote:
> Hi Marco
>
> My examples below use a table name of tblRegister with columns of
> EmployeeNo, RegDate, RegTime and Description.
>
> Obviously, change these to your own. It is not recommended to use table or
> column names with spaces or to use reserved words like date or time.
>
> Make a backup of your table BEFORE trying these!
>
> If you want to delete the rows use something like,
>
> delete * from tblRegister
> where Description = "OUT"
> and RegTime = dmin("RegTime", "tblRegister", "EmployeeNo = " & EmployeeNo &
> " and RegDate = " & format(RegDate, "\#mm\/dd\/yyyy\#"))
>
> If you want to update them...
>
> update tblRegister
> set RegDate = dateadd("d", -1, RegDate), RegTime = "23:59"
> where Description = "OUT"
> and RegTime = dmin("RegTime", "tblRegister", "EmployeeNo = " & EmployeeNo &
> " and RegDate = " & format(RegDate, "\#mm\/dd\/yyyy\#"))
>
> Note: I used a time of 23:59 as we don't know the real time they left and,
> presumably, we want it to be after any other times registered. You can change
> this and / or make the query calculate a time if you need to.
>
> And the date gets set to the day before but you might need to do a bit more
> here if yesterday wasn't the last day they were in.
>
> Also, the above work for all dates in the table - you may want to restrict
> it to today or the latest.
>
> Hope this helps
>
> Regards
>
> Andy Hull
>
>
> "Marco" wrote:
>
> > Hello. I'm creating a querie that lists all employee activity. So the querie
> > runs onver a table that has all In and Out of the employees registries.
> > Sometimes in the the first day is Out, it happens because the employee
> > forgets to register is Out of job. So, is it possible to remove that register
> > in order to have the first register of the day has a IN? Even better was
> > changing the date of that Out register to the previous date.
> >
> > This is ok to happen because the door don't open if the empoyee don't make
> > all register regular. So in the new day if a Out is no detected on the system
> > is like the employee never Out. So before he can In he must register Out. :)
> >
> > Imagine that I have this:
> > ---------------------------------------------------------------------------------
> > Employe No. Date Time Description
> > 1010 15-05-2007 08:00 OUT
> > 1010 15-05-2007 08:01 IN
> > 1010 15-05-2007 18:00 Out
> >
> > and I need this:
> > --------------------------------------------------------------------------
> > Employe No. Date Time Description
> > 1010 15-05-2007 08:01 IN
> > 1010 15-05-2007 18:00 Out
> >
> >
> >
> > This error hapens when the software detects this:
> > ------------------------------------------------------------------------
> > Employe No. Date Time Description
> > 1010 14-05-2007 08:01 IN
> >
> > This means that in 15th May the employee must register the Out to be able to
> > In.
> >
> > Any idea? Please help.
> >
> > Regards,
> > Marco
> >
> >
|
|
0
|
|
|
|
Reply
|
Utf
|
5/27/2007 5:57:00 PM
|
|
On Sun, 27 May 2007 09:51:01 -0700, Marco <Marco@discussions.microsoft.com>
wrote:
>Hi. In both example returns me the message "Unknown"
>
>In delete I used:
>delete * from 2_tbl_Actual_Historico_Almoco
>where Descricao = "Sa�da Torniquete 2"
>and Hora_GE = dmin("Hora_GE", "2_tbl_Actual_Historico_Almoco",
>"EmployeeNumber = " & EmployeeNumber &
>" and Data_Ge = " & format(Data_GE, "\#dd\/mm\/yyy\#"))
>
>
>and in update I used:
>update 2_tbl_Actual_Historico_Almoco
>set Data_GE = dateadd("d", -1, Data_GE), Hora_GE = "23:59"
>where Descricao1 = "Sa�da Torniquete 2"
>and Hora_GE = dmin("Hora_GE", "2_tbl_Actual_Historico_Almoco",
>"EmployeeNumber = " & EmployeeNumber &
>" and Data_GE = " & format(Data_GE, "\#dd\/mm\/yyyy\#"))
>
>I had to made some changes because our date starts with Days and then months.
A literal date in an Access query *ignores* the regional date/time settings.
You must use either the American mm/dd/yyyy format, or an unambiguous format
such as dd-MMM-yyyy or yyyy.mm.dd. The format you are using *will not work
correctly*.
John W. Vinson [MVP]
|
|
0
|
|
|
|
Reply
|
John
|
5/27/2007 7:21:01 PM
|
|
Hello John.
why do you think the SQL code is not working on may table? Is always
returnin the error of unknown.
Regards,
Marco
"John W. Vinson" wrote:
> On Sun, 27 May 2007 09:51:01 -0700, Marco <Marco@discussions.microsoft.com>
> wrote:
>
> >Hi. In both example returns me the message "Unknown"
> >
> >In delete I used:
> >delete * from 2_tbl_Actual_Historico_Almoco
> >where Descricao = "Saída Torniquete 2"
> >and Hora_GE = dmin("Hora_GE", "2_tbl_Actual_Historico_Almoco",
> >"EmployeeNumber = " & EmployeeNumber &
> >" and Data_Ge = " & format(Data_GE, "\#dd\/mm\/yyy\#"))
> >
> >
> >and in update I used:
> >update 2_tbl_Actual_Historico_Almoco
> >set Data_GE = dateadd("d", -1, Data_GE), Hora_GE = "23:59"
> >where Descricao1 = "Saída Torniquete 2"
> >and Hora_GE = dmin("Hora_GE", "2_tbl_Actual_Historico_Almoco",
> >"EmployeeNumber = " & EmployeeNumber &
> >" and Data_GE = " & format(Data_GE, "\#dd\/mm\/yyyy\#"))
> >
> >I had to made some changes because our date starts with Days and then months.
>
> A literal date in an Access query *ignores* the regional date/time settings.
> You must use either the American mm/dd/yyyy format, or an unambiguous format
> such as dd-MMM-yyyy or yyyy.mm.dd. The format you are using *will not work
> correctly*.
>
>
> John W. Vinson [MVP]
>
|
|
0
|
|
|
|
Reply
|
Utf
|
5/27/2007 11:12:01 PM
|
|
On Sun, 27 May 2007 16:12:01 -0700, Marco <Marco@discussions.microsoft.com>
wrote:
>Hello John.
>
>why do you think the SQL code is not working on may table? Is always
>returnin the error of unknown.
What is the actual error message and message number?
John W. Vinson [MVP]
|
|
0
|
|
|
|
Reply
|
John
|
5/28/2007 12:28:52 AM
|
|
On Mon, 28 May 2007 02:53:01 -0700, Marco <Marco@discussions.microsoft.com>
wrote:
>Hello. the error message only says "Unknown" nothing else.
That does not appear to be an Access error message, then. Could it be coming
from your application???
Can you create a Query (in the query window) duplicating what your code is
trying to create? Does *it* give a message Unknown (or some other error
message)?
Remember... we cannot see your database. I have no idea how your tables are
structured or whether the query you're building will even work.
John W. Vinson [MVP]
|
|
0
|
|
|
|
Reply
|
John
|
5/28/2007 4:33:43 PM
|
|
Hello John.
I'm sorry all this trouble. But i'm really stucked and I have no one else to
make this kind of questions.
In portugal Access is not very used. but I like it.
So, let me give the structure of my table from where I wnat to delete or
update
Name of the table:
2_tbl_Actual_Historico_Almoco
Field Name Type
EmployeeNumber Text
MicroDate Number ( is the date im decimal)
Data_GE Text (this is the date, I know that
is as text)
Descricao Text
Calculos_Hora Number
Hora_GE Text (this is the time)
I'm trying to run this querie that Andy provide me:
delete * from 2_tbl_Actual_Historico_Almoco
where Description = "Saída Torniquete 2"
and Hora_GE = dmin("Hora_GE", "2_tbl_Actual_Historico_Almoco",
"EmployeeNumber = " & EmployeeNumber &
" and Data_GE = " & format(Data_GE, "\#mm\/dd\/yyyy\#"))
I alreday try to change the Hora_GE (time) and Data_Ge (date) to Date/Time
type of data.
What do you think?
<b>Thanks</b>
Regards once again,
Marco
"John W. Vinson" wrote:
> On Mon, 28 May 2007 02:53:01 -0700, Marco <Marco@discussions.microsoft.com>
> wrote:
>
> >Hello. the error message only says "Unknown" nothing else.
>
> That does not appear to be an Access error message, then. Could it be coming
> from your application???
>
> Can you create a Query (in the query window) duplicating what your code is
> trying to create? Does *it* give a message Unknown (or some other error
> message)?
>
> Remember... we cannot see your database. I have no idea how your tables are
> structured or whether the query you're building will even work.
>
> John W. Vinson [MVP]
>
|
|
0
|
|
|
|
Reply
|
Utf
|
5/28/2007 5:02:00 PM
|
|
On Mon, 28 May 2007 10:02:00 -0700, Marco <Marco@discussions.microsoft.com>
wrote:
>So, let me give the structure of my table from where I wnat to delete or
>update
>
>Name of the table:
>2_tbl_Actual_Historico_Almoco
>
>Field Name Type
>EmployeeNumber Text
>MicroDate Number ( is the date im decimal)
>Data_GE Text (this is the date, I know that
>is as text)
>Descricao Text
>Calculos_Hora Number
>Hora_GE Text (this is the time)
>
>I'm trying to run this querie that Andy provide me:
>
>delete * from 2_tbl_Actual_Historico_Almoco
>where Description = "Sa�da Torniquete 2"
>and Hora_GE = dmin("Hora_GE", "2_tbl_Actual_Historico_Almoco",
>"EmployeeNumber = " & EmployeeNumber &
>" and Data_GE = " & format(Data_GE, "\#mm\/dd\/yyyy\#"))
>
>I alreday try to change the Hora_GE (time) and Data_Ge (date) to Date/Time
>type of data.
If you will be sorting or searching by date, you would really be much better
off having Hora_GE and Data_GE stored together in a single date/time field.
You say they are Text fields now - in what format are they stored? Could you
post a couple of examples? It should be possible to create a new Date/Time
field and update it with the existing data, using the DateSerial and
TimeSerial functions.
Your SQL uses a fieldname "Description" but in your table this appears to be
"Descricao". Also you have an odd mix of quotes. Is this query being created
in VBA code, or is this the SQL view from the Query window?
Guessing at a few things - such as guessing that Data_GE is a Text field in
dd/mm/yyyy format - try copying and pasting this into the SQL window of a new
query. BACK UP YOUR DATABASE FIRST - delete queries cannot be reversed!
DELETE * FROM [2_tbl_Actual_Historico_Almoco]
WHERE [Descricao] = "Sa�da Torniquete 2"
AND [Hora_GE] = & "'" DMin("[Hora_GE]", "2_tbl_Actual_Historico_Almoco",
"[EmployeeNumber] = '" & [EmployeeNumber] & "' AND [Data_GE] = '" & [Data_GE]
& "'") & "'";
This will delete the earliest record on *every* day in the table for every
employee. It's not completely clear that is what you want to do!
John W. Vinson [MVP]
|
|
0
|
|
|
|
Reply
|
John
|
5/28/2007 8:20:39 PM
|
|
Hi. This looks a "cruzade".
Yes, if "Saída Torniquete 2" is the first record of the day I want to
delete. Why? Because if it stays on the table says that the employee Out
(Out=Saída) before he could In, and that cannot be possible. These situation
occours because sometimes employees "forget" to pass the card "saying" that
they are leaving the office. And because for every In on job, must have an
out, in the folling day the employee must past a card to out, the out of
previous day in to be allowed to pass the card to get in.
I tried your querie but returns me a erro. Sintaxe Error (operator missing).
This is not easy. And Yes, I chage the type of data do date and time and I
made the update.
I'm now triyng from another way. I create a querie that shows me those wrong
records. then I create another querie that shows me the unmatch records. I
think that for there I may go there. well......... :)
Best Regards,
Marco
"John W. Vinson" wrote:
> On Mon, 28 May 2007 10:02:00 -0700, Marco <Marco@discussions.microsoft.com>
> wrote:
>
> >So, let me give the structure of my table from where I wnat to delete or
> >update
> >
> >Name of the table:
> >2_tbl_Actual_Historico_Almoco
> >
> >Field Name Type
> >EmployeeNumber Text
> >MicroDate Number ( is the date im decimal)
> >Data_GE Text (this is the date, I know that
> >is as text)
> >Descricao Text
> >Calculos_Hora Number
> >Hora_GE Text (this is the time)
> >
> >I'm trying to run this querie that Andy provide me:
> >
> >delete * from 2_tbl_Actual_Historico_Almoco
> >where Description = "Saída Torniquete 2"
> >and Hora_GE = dmin("Hora_GE", "2_tbl_Actual_Historico_Almoco",
> >"EmployeeNumber = " & EmployeeNumber &
> >" and Data_GE = " & format(Data_GE, "\#mm\/dd\/yyyy\#"))
> >
> >I alreday try to change the Hora_GE (time) and Data_Ge (date) to Date/Time
> >type of data.
>
> If you will be sorting or searching by date, you would really be much better
> off having Hora_GE and Data_GE stored together in a single date/time field.
> You say they are Text fields now - in what format are they stored? Could you
> post a couple of examples? It should be possible to create a new Date/Time
> field and update it with the existing data, using the DateSerial and
> TimeSerial functions.
>
> Your SQL uses a fieldname "Description" but in your table this appears to be
> "Descricao". Also you have an odd mix of quotes. Is this query being created
> in VBA code, or is this the SQL view from the Query window?
>
> Guessing at a few things - such as guessing that Data_GE is a Text field in
> dd/mm/yyyy format - try copying and pasting this into the SQL window of a new
> query. BACK UP YOUR DATABASE FIRST - delete queries cannot be reversed!
>
> DELETE * FROM [2_tbl_Actual_Historico_Almoco]
> WHERE [Descricao] = "Saída Torniquete 2"
> AND [Hora_GE] = & "'" DMin("[Hora_GE]", "2_tbl_Actual_Historico_Almoco",
> "[EmployeeNumber] = '" & [EmployeeNumber] & "' AND [Data_GE] = '" & [Data_GE]
> & "'") & "'";
>
> This will delete the earliest record on *every* day in the table for every
> employee. It's not completely clear that is what you want to do!
>
> John W. Vinson [MVP]
>
|
|
0
|
|
|
|
Reply
|
Utf
|
5/28/2007 11:35:00 PM
|
|
|
11 Replies
131 Views
(page loaded in 0.736 seconds)
Similiar Articles: Payroll Build Checks takes almost 4 hours - what can I check ...... bars and they show the employee id's ... Checks process runs in only 20 seconds!!! It turned out to be a 3rd party product that we dont even use, so we need to remove it. Can't unlink groups of tasks - microsoft.public.project ...... of the same tasks repeated with only the start ... finish date is driven by another task's start/finish date. To remove ... on a Mac. However, every time I start Out... Delete OLEObject from Row or Cell - microsoft.public.excel ...But I cannot figure out how to delete an oleobject (embedded file object) f... ... embedded file object) from only the ... insert rows in a table, see Add or remove ... How to determine the number of decimal places in a number ...We can only talk about trailing zeroes when the data ... by executing the nested functions one at a time starting ... Remove decimal but keep entire number - microsoft.public ... Uninstall CRM 3.0 - microsoft.public.crmAdd/Remove Programs - uninstall SQL Server Desktop Engine (CRM) c. Start - Run - services.msc > Stop the MSSQL$CRM ... make Outlook crash - microsoft.public.crm The only ... Retrieve File Names in Directories - microsoft.public.excel ...Can anyone tell me how or if it is possible to start at a ... with my code in it, get in touch via email to (remove ... Without even opening the file, File lets you find out ... Subreport Keeps Repeating Itself - microsoft.public.access.reports ...... to print out paystubs for employees over a given time period. I have a start up ... you should remove the subreport table from the main report's ... main report's only ... Using email to update Table records - microsoft.public.access ...... includes every record in the table, she only wants to send out ... > > For example say I have a table with all employee's ... To remove all the records from a table, use the ... count of attendance - microsoft.public.access.forms... trying to know how many attendance days i have by employee ... Remove [JANUARY 25-12/24-01 ATTENDANCE].[Date Worked ... program that includes a number of fields ... start date ... WSS 3.0 - microsoft.public.windows.server.sbs... log and >> cannot see any errors as such only that it couldn't start ... obviously permission based but I cant work out ... Management > Content Databases - Remove the ... get rid of theme fonts in font dropdown - microsoft.public.word ...There is no way I am aware of to remove the ... to "NoFontMRUList"="0" to start the list ... from my ... suggest renaming it out side of the Fonts ... The only changes ... Detail Historical Aged Trial Balance report - microsoft.public ...What is the best approach to remove these. I look at the report and the only ... look for the document and void it out ... remove' do you mean you want to remove them f ... Need WritePrivateProfileString replacement - microsoft.public.vb ...... that I can only have 254 bytes of text stored in a key, or half that f... ... be another DLL out there to handle longer strings as Google's ... Sharp I need to remove non ... find and replace in footer - microsoft.public.word.vba.general ...Never mind - I found out what my problem ... It only shows zoom and pages. How do... ... Remove or replace any content in that H/F. HTH |:>) Bob Jones [MVP] Office:Mac ... Internet connection problem using the connection wizard ...Unfortunately the only idea I'm getting in my mind about how remove and ... for a logon when you start the application up on client pc's ... reboot to clear it out ... Shared Workbook is "in use by another user" - microsoft ...... happen if it's shared, should it? I can open it as read-only, but ... the day to track employees ... Start a new workbook and test it out. If it's always greyed ... VBA code to fax from Excel or Outlook - microsoft.public.windows ...Which is only a partial answer because it doesn't ... MAILBOX ON THE SERVER: - On SBS 2000, click Start ... VBA to Remove Duplicates in Excel. Visual Basic for ... Using VBA to disable fileds in a form - microsoft.public.access ...I need to grey out or disable Cost,... ... the General section of the form's code module, with code like this: '----- start ... little database to keep track of employee ... How to find folder tree for emails in search results? - microsoft ...In the "In Folder" column, it only gives the ... If not, you could start a new thread asking if ... That's when the apologists came out of the > woodwork. Can't delete corrupt C:\WINDOWS\system32\drivers\etc\hosts ...Remove the Read-only attribute: Right click the hosts file ... and am about ready to whipe the computer and start ... - Do show the ENTIRE message (but munge or star out ... Yahoo Small Business Advisor: Ideas and Advice for Growing BusinessesWhat is this? Not you? Log out of Facebook; How to remove this experience ... Technologies, a 6-year-old video start-up, is ... Location independence is on every employee's wish ... How to Comply with the Americans with Disabilities Act: A Guide ...... then you have to count all the employees only if your ... An employee's doctor sent me a note saying the ... She asks the restaurant for a later start time. One of Grace's ... Employer ID Numbers (EINs)Starting a Business; Deducting Expenses; Businesses with Employees; Filing/Paying Taxes ... Check out our Interview-style online EIN application ... FOR FINAL PDFThis guide is meant to remove the ... you are a small company just starting out or ... Q: What if my employee has a cut or scratch, something that only needs antiseptic and ... Today's Top How To6 Ways to Get Out With the Gals; Stability Ball Flexibility Exercises ... Today's Top How To 7 Businesses You Can Start at Home. Want to work for yourself? Criticism of Facebook - Wikipedia, the free encyclopedia... how privacy controls filter out what a specific given friend can see, only displays the user's ... give you the ability to remove the ... Ontario government employees, Federal ... Student Visas - Welcome to Travel.State.Gov... an earlier entry into the U.S. (more than 30 days prior to the course start date ... or your sponsor is a salaried employee ... Your Authorized Stay in the U.S. and Being Out of ... Remove a Radio - How To Information | eHow.comThe F-150’s history dates back to the ... Only a few tools will be needed to remove the holder. ... And if the radio starts to go out or has problems ... Abercrombie & Fitch - Wikipedia, the free encyclopediaA&F casts only store employees for marketing campaigns. ... human-resources representative's demand that she remove ... Upwards of 70 employees at A&F's Fifth Avenue ... FordF150.net - Your Ford F150 Truck Enthusiast Site - 2011 Ford ...Apr 2/11 - How to remove your power door lock ... ford f-150 2004 problems - my truck is starting to stall on me when i have been ... - Check out photos of the 2012 F150 Harley ... 7/16/2012 9:47:31 AM
|