Date counter and then stop when new date is entered
Closed
slizott
Posts
1
Registration date
Monday February 24, 2020
Status
Member
Last seen
February 24, 2020
-
Updated on Feb 24, 2020 at 09:09 AM
TrowaD Posts 2921 Registration date Sunday September 12, 2010 Status Moderator Last seen December 27, 2022 - Mar 2, 2020 at 12:08 PM
TrowaD Posts 2921 Registration date Sunday September 12, 2010 Status Moderator Last seen December 27, 2022 - Mar 2, 2020 at 12:08 PM
Related:
- D4 fps counter
- Counter strike 1.6 cheats - Guide
- Steam fps counter not showing - Guide
- Counter strike 2 download - Download - Shooters
- Fps counter chromebook - Guide
- Snapchat 60 fps - Guide
1 response
TrowaD
Posts
2921
Registration date
Sunday September 12, 2010
Status
Moderator
Last seen
December 27, 2022
555
Mar 2, 2020 at 12:08 PM
Mar 2, 2020 at 12:08 PM
Hi Slizott,
Slightly confusing. First you want to calculate time between B9 and Z9, D9 and Z9. And later you say you want to calculate between B9 and D4 until Z9 is entered.
I guess the Z9's in the first sentence are a typo and you meant to say D4.
Assuming you want to use column AA and AB for the day differences, check the following code:
To implement the code, right-click the sheet's tab and select View code. Paste the code in the big white field of the newly opened window. This window can be closed immediately after.
Best regards,
Trowa
Slightly confusing. First you want to calculate time between B9 and Z9, D9 and Z9. And later you say you want to calculate between B9 and D4 until Z9 is entered.
I guess the Z9's in the first sentence are a typo and you meant to say D4.
Assuming you want to use column AA and AB for the day differences, check the following code:
Private Sub Worksheet_Change(ByVal Target As Range) If Intersect(Target, Columns("Z")) Is Nothing Then Exit Sub If Target.Cells.Count > 1 Then Exit Sub Range("AA" & Target.Row).Value = Range("D4").Value - Range("B" & Target.Row) Range("AB" & Target.Row).Value = Range("D4").Value - Range("D" & Target.Row) End Sub
To implement the code, right-click the sheet's tab and select View code. Paste the code in the big white field of the newly opened window. This window can be closed immediately after.
Best regards,
Trowa