VBA Code to convert calculated value to Hours,Minutes & Seconds is failing

Ruts

New Member
Joined
Sep 13, 2008
Messages
27
Hey guys and girls, this is doing my head in - the concept works fine if I write it in cells on a sheet - so it "SHOULD" work in my VBA but it isn't.

Quite possibly I am missing the simplest thing and just am too close to see it.

Anybody see where I have buggered it up ??
Below are the relevant snippets of the code - all the DIMS statements are at the start of the code with the variables defined immediately prior to display.

Code:
Dim timeCalcColumns As Integer       ' The number of columns of data - used to determine max cells to process
Dim timeCalcRows As Integer         ' The number of rows of data - used to determine max cells to process
Dim timeStart As String
Dim timeFinish As String
Dim processCells As Long
Dim processTime As Long
Dim actualHour As Long
Dim actualMinute As Long
Dim actualSecond As Long
Dim remainingMinute As Long
Dim remainingSecond As Long


    processCells = timeCalcRows * timeCalcColumns
    processTime = processCells * 6.10269370636987E-08
    actualHour = Int(processTime * 24)
    actualMinute = processTime * 24 * 60
    actualSecond = processTime * 24 * 60 * 60
    remainingMinute = Int(actualMinute - (actualHour * 60))
    remainingSecond = Int(actualSecond - (actualMinute * 60))

    
    MsgBox "About to process " & timeCalcRows & " personnel " & "and " & timeCalcColumns & " accomplishments." & Chr$(10) & Chr$(10) & "Processing should take approximately : " & actualHour & " hours " & remainingMinute & " minutes " & remainingSecond & " seconds."

timeCalcColumns returns a value of 54
timeCalcRows returns a value of 102
processTime is the value determined to process each cell * the number of cells (5508)

using these values processing time should = 29 secs - but it shows as ZERO:mad:

any help on what I have done wrong will be very greatly appreciated.
 

Excel Facts

Copy PDF to Excel
Select data in PDF. Paste to Microsoft Word. Copy from Word and paste to Excel.
You have dimensioned process time as a Long - try declaring it as a Double instead as this statement sets it to zero currently:

Code:
processTime = processCells * 6.10269370636987E-08

You may also need to do this with all your other values too.
 
Upvote 0
Tried the Double variable - got yet another outcome -1 instead of 0 - still not the 29 I was hoping for.

photo.php


photo.php
 
Upvote 0
Something else must be present in your code as it works as described for me (when processTime is declared as a Double). In the VBE, make sure you have the Locals window visible (View>Locals Window) as you can track what values your variables hold as the code is executed. If you step thru the code with F8, you can execute a line at a time, and see where the erroneous values are coming from.
 
Upvote 0
Thanks that did work - found the issues - it was in my calculation:

remainingMinute = Int(actualMinute - (actualHour * 60))
remainingSecond = Int(actualSecond - (actualMinute * 60))

now reads

remainingMinute = Int(actualMinute) - (Int(actualHour) * 60)
remainingSecond = Int(actualSecond) - (Int(actualMinute) * 60)
 
Upvote 0

Forum statistics

Threads
1,215,078
Messages
6,122,997
Members
449,093
Latest member
masterms

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