Faster excel time entry?

Alexander Roe 1 Reputation point
2022-04-08T17:10:38.883+00:00

Is there a way to enter times in excel faster? To enter 8:09 am then 30 minute then 5:34 pm as it is right now i have to enter the cell and move my hand to the number key pad and type 8 then move my hand over to the qwerty keys and type (shift) : then move back over to the number pad and enter 09 then back over to the qwerty and type am. then tap the right arrow and then 30 and repeat, you get the idea.

what i would like is to enter every thing from the number pad. So something like (8.09/01 > 30 > 5.34/02) so the . would be turned in to : and the 01 and 02 would be am and pm.

is there a feature in excel that would let me do that, or a formula that would interpret that string as a time code?

Excel Management
Excel Management
Excel: A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.Management: The act or process of organizing, handling, directing or controlling something.
1,735 questions
{count} votes

1 answer

Sort by: Most helpful
  1. Emi Zhang-MSFT 26,031 Reputation points Microsoft Vendor
    2022-04-11T08:17:42.367+00:00

    Hi @Alexander Roe ,
    I'm not very clearly about "30 minute" in the thread.
    If you only want to enter the values and transform them to TIME format automatically, yo can try this formula:

    =TIMEVALUE(LEFT(A1,FIND(".",A1)-1)&":"&MID(A1,FIND(".",A1)+1,FIND("/",A1)-4)&IF(RIGHT(A1,LEN(A1)-FIND("/",A1))="01"," am",IF(RIGHT(A1,LEN(A1)-FIND("/",A1))="02"," pm","")))  
    

    191740-image.png

    About "30 minute" please be a bit more precise to explain your requirement or you can upload a screenshot so that I can get more accurate solutions to this problem. I’m glad to help and follow up your reply.

    Just checking in to see if the information was helpful. Please let us know if you would like further assistance.


    If the response is helpful, please click "Accept Answer" and upvote it.
    Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.


Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.