How can count no of count in cells according to same date but different time shift using macro??

mars91

New Member
Joined
Jul 8, 2011
Messages
48
Hi
How can count no of count in cells according to same date but different time shift?? I wanted to complete this by doing macro.

For Example i have 2 time shift :
For Night shift is 1200am to 830am
For Day shift is from 1200pm to 1830pm

For Example,Starting from B2 onward will be the date plus time.
It look something like this : 2011-07-22 5:23
The date are the same but the timing are different.
So if it is 2011-07-22 5:23 then it will be night shift.

So how can i do macro to count the total cells for the Night and Day shift??

I really need help to do this in macro. Any pro,please help me!!

Thank you very much in advance..
 

Excel Facts

Copy a format multiple times
Select a formatted range. Double-click the Format Painter (left side of Home tab). You can paste formatting multiple times. Esc to stop
Hi all,

Anyone can help?? I need help with this in macro.
I cant find any example. Any similar example and codes to try will be good enough for me.

Thanks
 
Upvote 0
Do you really need a macro?
Do these worksheet formulas do what you want?
Both formulas copied down.

Excel Workbook
BCDEFG
1Date/TimeDateNight ShiftDay Shift
21/08/11 5:511/08/1121
31/08/11 8:012/08/1101
41/08/11 15:513/08/1111
52/08/11 13:20
63/08/11 3:00
73/08/11 11:58
83/08/11 16:44
9
Shifts
 
Upvote 0
Hi,
Peter,thanks for you help. Sorry,I never use this spreadsheet formula before. Can you explain to me how you do it and how it works?? I am abit confused.

To: Peter and T.Valko
I need to do this in macro because this is sort of my mini project so i need to do in macro if it is possible. I am still weak in macro so i am looking for help seeing whether this is possible to be done in macro.

Sorry for any trouble and thank you all.

Please let me know if there are other solutions.

Thanks in advance!
 
Upvote 0
Firstly, please refer to my comment in your other thread about duplicate posts.


Sorry,I never use this spreadsheet formula before. Can you explain to me how you do it ...
To use the formula, you copy it from my post above and paste it into the cell shown.

I need to do this in macro ..
Well, for the layout shown below and your date of interest in cell E2, here's one way.

<font face=Courier New><br><SPAN style="color:#00007F">Sub</SPAN> CountShifts()<br>    <SPAN style="color:#00007F">Dim</SPAN> lr <SPAN style="color:#00007F">As</SPAN> <SPAN style="color:#00007F">Long</SPAN><br>    <br>    <SPAN style="color:#00007F">Const</SPAN> fNight <SPAN style="color:#00007F">As</SPAN> <SPAN style="color:#00007F">String</SPAN> = _<br>        "=SUMPRODUCT(--(INT($B$2:$B$#)=$E2),--(MOD($B$2:$B$#,1)<=8.5/24))"<br>    <SPAN style="color:#00007F">Const</SPAN> fDay <SPAN style="color:#00007F">As</SPAN> <SPAN style="color:#00007F">String</SPAN> = _<br>        "=SUMPRODUCT(--(INT($B$2:$B$#)=$E2),--(MOD($B$2:$B$#,1)>=0.5))"<br>    <br>    lr = Range("B" & Rows.Count).End(xlUp).Row<br>    Range("F2").Formula = Replace(fNight, "#", lr)<br>    Range("G2").Formula = Replace(fDay, "#", lr)<br><SPAN style="color:#00007F">End</SPAN> <SPAN style="color:#00007F">Sub</SPAN><br></FONT>
 
Upvote 0

Forum statistics

Threads
1,224,559
Messages
6,179,517
Members
452,921
Latest member
BBQKING

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top