Adding Time Within Textboxes

Try2Live4God

New Member
Joined
May 17, 2006
Messages
14
Hi,
I was trying to search but couldn't find anything related to what I'd like to do. But then again, I'm still somewhat of a novice with VBA..... :)

Anyways....I have 4 textboxes that have the total overtime hrs. I'd like to add up the values/times from these 4 textboxes and get a Grand Total of the OT hrs which will display in a fifth textbox. I want to stick to using textboxes and not use the cells.

Example:
Textbox1 = 1:00 of OT
Textbox2 = 1:30 of OT
Textbox3 = 2:00 of OT
Textbox4 = 2:45 of OT
Textbox5 = Grand Total of 7:15

Any help would be appreciated.

Thanks!
 

Excel Facts

Convert text numbers to real numbers
Select a column containing text numbers. Press Alt+D E F to quickly convert text to numbers. Faster than "Convert to Number"
Are the textboxes on a vba userform?
 
Upvote 0
Try this, go into design mode on each textbox and add the following code by double clicking the textbox one at time, it will use the change event.

I have created a subroutine sumtxtbox within the module sheet.

Sub SumTxtBox()
On Error Resume Next
Me.TextBox4 = (IIf(Me.TextBox1 = "", 0, Me.TextBox1) + 0) + (IIf(Me.TextBox2 = "", 0, Me.TextBox2) + 0) + (IIf(Me.TextBox3 = "", 0, Me.TextBox3) + 0)
End Sub
Private Sub TextBox1_Change()
Call SumTxtBox
End Sub
Private Sub TextBox2_Change()
Call SumTxtBox
End Sub
Private Sub TextBox3_Change()
Call SumTxtBox
End Sub
 
Upvote 0
Try this, go into design mode on each textbox and add the following code by double clicking the textbox one at time, it will use the change event.

I have created a subroutine sumtxtbox within the module sheet.

Trevor G,
Thank you for your help on this!!

I plugged the code in and nothing happens. The only thing I changed were the names for my textboxes i.e. txtCash1, txtCash2, etc. Am I missing something??

This is what I got:

Sub SumTxtBox()
On Error Resume Next
Me.txtGrandTotalCash1 = (IIf(Me.txtCash1 = "", 0, Me.txtCash1) + 0) + (IIf(Me.txtCash2 = "", 0, Me.txtCash2) + 0) + (IIf(Me.txtCash3 = "", 0, Me.txtCash3) + 0) + (IIf(Me.txtCash4 = "", 0, Me.txtCash4)
End Sub

Private Sub txtCash1_Change()
Call SumTxtBox
End Sub

Private Sub txtCash2_Change()
Call SumTxtBox
End Sub

Private Sub txtCash3_Change()
Call SumTxtBox
End Sub

Private Sub txtCash4_Change()
Call SumTxtBox
End Sub
 
Upvote 0
I plugged the code in and nothing happens. The only thing I changed were the names for my textboxes i.e. txtCash1, txtCash2, etc. Am I missing something??
Do you TextBoxes contain the words "of OT" along with the time values? If so, or even if not, try changing the SumTxtBox subroutine to this...
Code:
[table="width: 500"]
[tr]
	[td]Sub SumTxtBox()
  On Error Resume Next
  Me.txtGrandTotalCash1 = Val(Me.txtCash1) + Val(Me.txtCash2) + Val(Me.txtCash3) + Val(Me.txtCash4)
End Sub[/td]
[/tr]
[/table]
 
Last edited:
Upvote 0
Do you TextBoxes contain the words "of OT" along with the time values? If so, or even if not, try changing the SumTxtBox subroutine to this...
Code:
[table="width: 500"]
[tr]
	[td]Sub SumTxtBox()
  On Error Resume Next
  Me.txtGrandTotalCash1 = Val(Me.txtCash1) + Val(Me.txtCash2) + Val(Me.txtCash3) + Val(Me.txtCash4)
End Sub[/td]
[/tr]
[/table]


Thank you so much Rick!! That worked.

Now here is my second overall question.......:)

How do I format the "Grand Total" textbox with the proper format?

Box #1 = 1:30 (One hr & thirty Minutes)
Box #2 = 1:45
Grand Total = 3:15

Right now as I have it, the Grand Total shows just "2" and is not adding the minutes.

Thank you!
 
Upvote 0
Now here is my second overall question.......:)

How do I format the "Grand Total" textbox with the proper format?

Box #1 = 1:30 (One hr & thirty Minutes)
Box #2 = 1:45
Grand Total = 3:15

Right now as I have it, the Grand Total shows just "2" and is not adding the minutes.
Is the only thing in your TextBoxes the time value or could there be other text in there with it (such as "of OT")?
 
Upvote 0
As per what you posted in Message #5 , assuming your five TextBoxes are named txtCash1, txtCash2, txtCash3, txtCash4 and txtGrandTotalCash1, replace the code you now have for your txtCash# TextBoxes with this...
Code:
[table="width: 500"]
[tr]
	[td]Private Sub txtCash1_Change()
  Call SumTimes
End Sub

Private Sub txtCash2_Change()
  Call SumTimes
End Sub

Private Sub txtCash3_Change()
  Call SumTimes
End Sub

Private Sub txtCash4_Change()
  Call SumTimes
End Sub[/td]
[/tr]
[/table]
and add the subroutine to at the bottom of the same module...
Code:
[table="width: 500"]
[tr]
	[td]Sub SumTimes()
  Dim T As Variant, Sum As Double
  On Error GoTo NoTotal
  For Each T In Array(txtCash1, txtCash2, txtCash3, txtCash4)
    T.BackColor = vbWhite
    If Len(T) Then Sum = Sum + CDate(T)
  Next
  txtGrandTotalCash1 = Application.Text(Sum, "[h]:mm")
  Exit Sub
NoTotal:
  T.BackColor = vbRed
  Resume Next
End Sub[/td]
[/tr]
[/table]
 
Last edited:
Upvote 0

Forum statistics

Threads
1,216,045
Messages
6,128,480
Members
449,455
Latest member
jesski

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