Skip to main content
Announcements
Happy New Year! Cheers to another year of collaboration, connections and success.
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Convert date and Time to required format

1/5/2013/16/23

1- day

5 - month

2013 - year

16 - 24 hr time

23 - minutes.

This is the date and time format i have, where i need it like below:

1/5/2013 16:23

Thanks..

1 Solution

Accepted Solutions
MindaugasBacius
Partner - Specialist III
Partner - Specialist III

Try like this:

=Timestamp(Timestamp#('1/5/2013/16/23','DD/MM/YYYY/hh/mm'),'DD/MM/YYYY hh:mm')

The output:

Screenshot_3.jpg

The idea. Firstly you need the interpretation function that ends with #. Secondly you have to define date and time format.

View solution in original post

7 Replies
kaushiknsolanki
Partner Ambassador/MVP
Partner Ambassador/MVP

Hi,

Use the Timestamp(Date , 'MM/DD/YYYY hh:mm')

Regards,

Kaushik Solanki

Please remember to hit the 'Like' button and for helpful answers and resolutions, click on the 'Accept As Solution' button. Cheers!
Anonymous
Not applicable
Author

Its not working.. am getting empty list...

kaushiknsolanki
Partner Ambassador/MVP
Partner Ambassador/MVP

Can you Post sample QVW file.

Regards,

Kaushik Solanki

Please remember to hit the 'Like' button and for helpful answers and resolutions, click on the 'Accept As Solution' button. Cheers!
Digvijay_Singh

Try this -

=Timestamp(Timestamp#('1/5/2013/16/23','DD/MM/YYYY/hh/mm'),'DD/MM/YYYY hh:mm')

er_mohit
Master II
Master II

Hi

Try this in text object

= timestamp(Timestamp#('1/5/2013/16/23','D/M/YYYY/hh/mm'),'DD/MM/YYYY hh:mm')

MindaugasBacius
Partner - Specialist III
Partner - Specialist III

Try like this:

=Timestamp(Timestamp#('1/5/2013/16/23','DD/MM/YYYY/hh/mm'),'DD/MM/YYYY hh:mm')

The output:

Screenshot_3.jpg

The idea. Firstly you need the interpretation function that ends with #. Secondly you have to define date and time format.

Not applicable
Author

Hi Kishore,

Try this

Timestamp(Timestamp#(date1,'DD/MM/YYYY/hh/mm'),'DD/MM/YYYY hh:mm')

Regards

Bazil Momin