Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1
Default IF calculation of Time

A B C D E
Arrived Triage Triage Delay Doctor Doctor Delay
10:02 10:02 00:00 10:02 00:00
11:08 11:08 00:00 12:50 01:42
13:59 13:25 00:41 15:30 00:50
15:45 16:55 01:10 01:12 08:17
16:14 No Triage
16:21 16:25 00:04 17:50 01:25
16:27 16:35 00:08 17:00 00:25
16:37 17:15 00:38 19:55 02:40
17:36 17:55 00:19 22:00 04:05
17:39 19:00 01:21 21:25 02:25
18:39 19:45 01:06 21:40 01:55
19:19 19:40 00:21 20:40 01:00
23:17 23:30 00:13 00:45

I am looking for a formula which calculates the length of delay at Triage
and the delay waiting to see a Doctor in the Emergency Room after Triage.
This then inputs text if Triage was not carried out i.e. an emergency
admission which went straight to the Doctor because they were not breathing.

I also have oddities where the Triage occurs before arrival. This is
because the patient is rushed into Triage and a relative registers the
patient. I can also have patients who do not see either Triage or the Doctor
as they go straight to Surgery but I haven't even sarted to look at this yet
as I can't get my formula to work.

It is not putting an N/A into the cell where the triage was not carried out.
and is putting the ? instead. I wanted the ? to show where the triage
occured before arrival.

=IF(A1B1,"?",IF(B10,B1-A1,"N/A"))

=IF(C1D1,"NO TRIAGE",IF(D10,D1-B1,"N/A"))

I also need to consider the clock ticking past midnight i.e patient arrives
at 22:30 but is seen by the Doctor at 01:30. The calculation does not work
as I wanted as it does not recognise that it is the following day.

I stored 24:00 in cell O7 and tried to adapt my existing formula by adding
another IF:

=IF(C1D1,"NO TRIAGE",IF(D10,D1-B1,"N/A",if (C1D1,C1-$O$7+D1,"N/A")))

My theory was if I take 24:00 from the triage time, then add the time seen
by the Doctor it would give a delay time from Triage to Doctor where the
clock has passed into the following day.

You can tell I am not an expert. There is a date column which shows 28
September as 28.09. The problem I guess is that the patient arrives on the
28th but is not seen until the 29th.

It is not working anyhow and I need some advice please. If you could give
some thought to a patient going straight to Surgery as well it would be much
appreciated.


  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 8,651
Default IF calculation of Time

To cope with time going past midnight, change B1-A1 to MOD(B1-A1,1) and
change D1-C1 to MOD(D1-C1,1)
--
David Biddulph

"Jacarutu" wrote in message
...
A B C D E
Arrived Triage Triage Delay Doctor Doctor Delay
10:02 10:02 00:00 10:02 00:00
11:08 11:08 00:00 12:50 01:42
13:59 13:25 00:41 15:30 00:50
15:45 16:55 01:10 01:12 08:17
16:14 No Triage
16:21 16:25 00:04 17:50 01:25
16:27 16:35 00:08 17:00 00:25
16:37 17:15 00:38 19:55 02:40
17:36 17:55 00:19 22:00 04:05
17:39 19:00 01:21 21:25 02:25
18:39 19:45 01:06 21:40 01:55
19:19 19:40 00:21 20:40 01:00
23:17 23:30 00:13 00:45

I am looking for a formula which calculates the length of delay at Triage
and the delay waiting to see a Doctor in the Emergency Room after Triage.
This then inputs text if Triage was not carried out i.e. an emergency
admission which went straight to the Doctor because they were not
breathing.

I also have oddities where the Triage occurs before arrival. This is
because the patient is rushed into Triage and a relative registers the
patient. I can also have patients who do not see either Triage or the
Doctor
as they go straight to Surgery but I haven't even sarted to look at this
yet
as I can't get my formula to work.

It is not putting an N/A into the cell where the triage was not carried
out.
and is putting the ? instead. I wanted the ? to show where the triage
occured before arrival.

=IF(A1B1,"?",IF(B10,B1-A1,"N/A"))

=IF(C1D1,"NO TRIAGE",IF(D10,D1-B1,"N/A"))

I also need to consider the clock ticking past midnight i.e patient
arrives
at 22:30 but is seen by the Doctor at 01:30. The calculation does not
work
as I wanted as it does not recognise that it is the following day.

I stored 24:00 in cell O7 and tried to adapt my existing formula by adding
another IF:

=IF(C1D1,"NO TRIAGE",IF(D10,D1-B1,"N/A",if (C1D1,C1-$O$7+D1,"N/A")))

My theory was if I take 24:00 from the triage time, then add the time seen
by the Doctor it would give a delay time from Triage to Doctor where the
clock has passed into the following day.

You can tell I am not an expert. There is a date column which shows 28
September as 28.09. The problem I guess is that the patient arrives on
the
28th but is not seen until the 29th.

It is not working anyhow and I need some advice please. If you could give
some thought to a patient going straight to Surgery as well it would be
much
appreciated.




  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 2,480
Default IF calculation of Time

Hi

Maybe
in C2
=IF(D2=B2,"Straight to Doctor",IF(B2="No Triage","",
IF(A2B2,"Immediate",IF(B20,MOD(B2-A2,1),"N/A"))))

in E2
=IF(AND(ISNUMBER(C2),C2D2),"NO TRIAGE",IF(D20,MOD(D2-B2,1),"N/A"))

--
Regards
Roger Govier

"Jacarutu" wrote in message
...
A B C D E
Arrived Triage Triage Delay Doctor Doctor Delay
10:02 10:02 00:00 10:02 00:00
11:08 11:08 00:00 12:50 01:42
13:59 13:25 00:41 15:30 00:50
15:45 16:55 01:10 01:12 08:17
16:14 No Triage
16:21 16:25 00:04 17:50 01:25
16:27 16:35 00:08 17:00 00:25
16:37 17:15 00:38 19:55 02:40
17:36 17:55 00:19 22:00 04:05
17:39 19:00 01:21 21:25 02:25
18:39 19:45 01:06 21:40 01:55
19:19 19:40 00:21 20:40 01:00
23:17 23:30 00:13 00:45

I am looking for a formula which calculates the length of delay at Triage
and the delay waiting to see a Doctor in the Emergency Room after Triage.
This then inputs text if Triage was not carried out i.e. an emergency
admission which went straight to the Doctor because they were not
breathing.

I also have oddities where the Triage occurs before arrival. This is
because the patient is rushed into Triage and a relative registers the
patient. I can also have patients who do not see either Triage or the
Doctor
as they go straight to Surgery but I haven't even sarted to look at this
yet
as I can't get my formula to work.

It is not putting an N/A into the cell where the triage was not carried
out.
and is putting the ? instead. I wanted the ? to show where the triage
occured before arrival.

=IF(A1B1,"?",IF(B10,B1-A1,"N/A"))

=IF(C1D1,"NO TRIAGE",IF(D10,D1-B1,"N/A"))

I also need to consider the clock ticking past midnight i.e patient
arrives
at 22:30 but is seen by the Doctor at 01:30. The calculation does not
work
as I wanted as it does not recognise that it is the following day.

I stored 24:00 in cell O7 and tried to adapt my existing formula by adding
another IF:

=IF(C1D1,"NO TRIAGE",IF(D10,D1-B1,"N/A",if (C1D1,C1-$O$7+D1,"N/A")))

My theory was if I take 24:00 from the triage time, then add the time seen
by the Doctor it would give a delay time from Triage to Doctor where the
clock has passed into the following day.

You can tell I am not an expert. There is a date column which shows 28
September as 28.09. The problem I guess is that the patient arrives on
the
28th but is not seen until the 29th.

It is not working anyhow and I need some advice please. If you could give
some thought to a patient going straight to Surgery as well it would be
much
appreciated.



__________ Information from ESET Smart Security, version of virus
signature database 4533 (20091022) __________

The message was checked by ESET Smart Security.

http://www.eset.com




__________ Information from ESET Smart Security, version of virus signature database 4533 (20091022) __________

The message was checked by ESET Smart Security.

http://www.eset.com



Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Time Calculation Paul Black Excel Discussion (Misc queries) 4 October 2nd 08 04:46 PM
Stop time - start time calculation squack21 Excel Worksheet Functions 5 December 10th 07 03:20 PM
Time calculation (Subraction of Idle Time) Ajay Excel Discussion (Misc queries) 6 March 4th 07 11:54 AM
Ignoring Time in a Date Time Calculation nmp Excel Worksheet Functions 3 November 23rd 05 08:32 PM
time calculation with military time Ron Thetford Excel Worksheet Functions 8 July 29th 05 07:24 PM


All times are GMT +1. The time now is 08:53 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"