![]() |
Work out Days Between Two Dates
Hi Is there a way to workout days between two dates like networkdays in code.
any help will be much appreciated Charles |
Work out Days Between Two Dates
Hi Charles,
One way: Sub a() Dim x As Long Dim d1 As Long, d2 As Long d1 = DateSerial(2000, 1, 1) d2 = DateSerial(2002, 1, 1) x = Application.Evaluate("=NETWORKDAYS(" & d1 & "," & d2 & ")") Debug.Print x End Sub HTH Peter Beach "vqthomf" wrote in message ... Hi Is there a way to workout days between two dates like networkdays in code. any help will be much appreciated Charles |
Work out Days Between Two Dates
On Fri, 6 Jan 2006 21:16:14 +1300, "Peter Beach" wrote:
Hi Charles, One way: Sub a() Dim x As Long Dim d1 As Long, d2 As Long d1 = DateSerial(2000, 1, 1) d2 = DateSerial(2002, 1, 1) x = Application.Evaluate("=NETWORKDAYS(" & d1 & "," & d2 & ")") Debug.Print x End Sub HTH or, if you set a reference to atpvbaen.xls: Sub a() Dim x As Long Dim d1 As Long, d2 As Long d1 = DateSerial(2000, 1, 1) d2 = DateSerial(2002, 1, 1) x = NETWORKDAYS(d1, d2) Debug.Print x End Sub --ron |
All times are GMT +1. The time now is 11:03 PM. |
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com