I am now working with ILO in the TVET reform project in Bangladesh. - My Training Portfolio is here

K M Mahmud Hasan’s Website Rss

Some thoughts....

graphicarts This page contains my Notes and slides for the classes, I am and will taking in Graphic Arts Institute . Just right click and then click save as and save into your drive.   PowerPoint PowerPoint...

Read more

7 Functions of Human Resource Management This is broadly defined as any part of the management structure relating to people at work. It involves everything from recruitment to training to performance appraisal and overall employee welfare. HRM...

Read more

Special Topics in Training and Development Orientation A formal process of familiarizing new employees with the organization, their jobs, and their work units. Benefits: 1.Lower turnover 2.Increased productivity 3.Improved employee...

Read more

Foreign Bribery -- bribery condemned and illegal in many countries, yet practiced widely -- is it ethical to give into demands of bribery? ("when in Rome, do asthe Romans do?") ∙  What is bribery?...

Read more

Briefly explain the two types of informal communication... Three main characteristics of a grapevine: First, it is not controlled by management. Second, it is perceived by most employees as being more believable and reliable than formal communiqués....

Read more

Entering dates quickly, without having to use delimiters to separate month, day, and year.

Category : Tips and Tricks

nter only the \”day\” part of the date and complete it by using the DATE, YEAR, TODAY, and MONTH functions in the following formula:
=DATE(YEAR(TODAY()),MONTH(TODAY()),A2)
Thus, on entering \”5\”, the formula will automatically create a date representing the 5th of the current month in the current year.

Solution 2:

Enter the entire date, without delimiters, and use the DATEVALUE, LEFT, MID, and RIGHT functions as shown in the following formula to convert it to a proper date:
=DATEVALUE(LEFT(D2,2)&\”/\”&MID(D2,3,2)&\”/\”&RIGHT(D2,2))
Thus, on entering \”060705\”, the above formula will return \”06/07/05\”.

Problem:
Entering dates quickly, without having to use delimiters to separate month, day, and year.

Solution 1:

Enter only the \”day\” part of the date and complete it by using the DATE, YEAR, TODAY, and MONTH functions in the following formula:
=DATE(YEAR(TODAY()),MONTH(TODAY()),A2)
Thus, on entering \”5\”, the formula will automatically create a date representing the 5th of the current month in the current year.

Solution 2:

Enter the entire date, without delimiters, and use the DATEVALUE, LEFT, MID, and RIGHT functions as shown in the following formula to convert it to a proper date:
=DATEVALUE(LEFT(D2,2)&\”/\”&MID(D2,3,2)&\”/\”&RIGHT(D2,2))
Thus, on entering \”060705\”, the above formula will return \”06/07/05\”.

Related posts:

  1. Finding the Last Day of a Given Month
  2. Selecting a random value from a List.

Post a comment