Insert Semi Colon

billandrew

Well-known Member
Joined
Mar 9, 2014
Messages
743
Good evening all

I am adding a semi colon in string of 3 after the 1st number & a semi colon in string of 4 after the 2nd number utilizing the below code. The issue I am having is at the end of the range when additional values are entered the cell returns 0:00. when the code is run again the value entered is correct with the semi colon and cell formatting.

Thanks for any assistance


Sub InsertSemiColonw()

Dim lr As Long
Dim i As Long

lr = Range("B" & Rows.Count).End(xlUp).Row

For i = 2 To lr

If Len(Cells(i, "B")) = 3 Then

Cells(i, "B") = Left(Cells(i, "B"), 1) & ":" & Right(Cells(i, "B"), 1)

ElseIf Len(Cells(i, "B")) = 4 Then

Cells(i, "B") = Left(Cells(i, "B"), 2) & ":" & Right(Cells(i, "B"), 2)


End If

Next

End Sub
 
I agree, this is most likely the cause. But then, why is it showing up as "0.00"? The best I could replicate is "0:00", which is according to my Regional Settings in the OS. If inserting a colon works to format time, why would it show up as "0.00"?
I misspoke when I said the 3/4 digit number entered into the cell is hours... it is not hours, it is days offset from "date zero". Dates in Excel (or VBA for that matter) are floating point numbers... the whole number is the days offset from date zero (1 is January 1, 1900) and the decimal value is the fraction of a 24-hour day expressed as a time value. When there is no decimal part to the floating point number, it means the fraction is 0, to the time value is midnight which Excel displays as 0:00. So when you enter a whole number into a cell that is formatted as a Time value (whether directly formatted that way or whether the format is extended from the cell above, the time portion of the date is displayed... 0:00 which represents midnight... the whole number remains in the cell, but since the Time format does not display the month/day/year it represents, you only see the time part which, as stated above, is 0:00.
 
Upvote 0

Excel Facts

Bring active cell back into view
Start at A1 and select to A9999 while writing a formula, you can't see A1 anymore. Press Ctrl+Backspace to bring active cell into view.
actually missed it. This works perfect.

Awesome

THANK YOU!

Cool! Glad to help.

I misspoke when I said the 3/4 digit number entered into the cell is hours... it is not hours, it is days offset from "date zero". Dates in Excel (or VBA for that matter) are floating point numbers... the whole number is the days offset from date zero (1 is January 1, 1900) and the decimal value is the fraction of a 24-hour day expressed as a time value. When there is no decimal part to the floating point number, it means the fraction is 0, to the time value is midnight which Excel displays as 0:00. So when you enter a whole number into a cell that is formatted as a Time value (whether directly formatted that way or whether the format is extended from the cell above, the time portion of the date is displayed... 0:00 which represents midnight... the whole number remains in the cell, but since the Time format does not display the month/day/year it represents, you only see the time part which, as stated above, is 0:00.

We're on the same page then. Based on OP's feedback, it sounds like this was the issue. You can either turn off the automatic formatting, as you originally suggested, but if you don't want to do that (or you need to distribute the worksheet to other users), then formatting all the empty cells as a regular number is a plausible workaround.

I was just confused about the formatting, 0.00 vs 0:00. The former indicates to me that this is a number format - in which case there should be a fractional portion, based on what you said. The latter looks like a time format, which would exhibit the issue of something like 1234 being interpreted as a number of days, and therefore not show the fractional time portion. When I attempted to recreate the issue, I could only get the 0:00 result (again, based on my OS settings).
 
Last edited:
Upvote 0

Forum statistics

Threads
1,214,954
Messages
6,122,462
Members
449,085
Latest member
ExcelError

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