First Of All I recommend you create a copy of worksheet as for backup.
Luckily that data entry in column B is Number and enter in 8 digits. So please go to the blank cell use this formula to convert data in column B into date. for example input formula in cell F2
=date(trunc(b2/10000), month(value(mid(b2,5,2)),value(right(b,2)))
Then Copy paste special in to F2
DATE is function to convert real number into date serial number
The Date syntax is:
TRUNC is the function to round the number in to the number in the digit nth.
The TRUNC syntax is
Digit is the decimal place no. If you omitted is mean that you want to round number into Integer
RIGHT is the function to select the character from text in specific number character
The RIGHT syntax is
MID is the function to extract some character from text, using the specific position
The MID syntax is
from you question please use this formula
=TIME(trunc(C2/10000),(MOD(C2,10000)-MOD(C2,100))/100,MOD(C2,100))
MOD is function calculate the remain from divided
Hope it will Help full information to you
Sincerely
VALUE is the function to convert number store as text to store as real value.
The VALUE syntax is
To convert number in time Using TIME Function
Time syntax is
=TIME(HOUR,MINUTE,SECOUND)
After convet data using formula. Please copy the paste special value in the same cells.
Bookmarks