Jump to content
  • 0

Display Time


taylorswiftlover

Question

7 answers to this question

Recommended Posts

  • 0

I did this on one of my Tabular Report's Calculated Field. I separated them with colons so I was required to convert those DateParts into text using CAST function because it is being rendered as integer:

CAST(DatePart(hour, [@field:Timestamp]) as VARCHAR) + ':' + CAST(DatePart(minute, [@field:Timestamp]) as VARCHAR) +':'+ CAST(DatePart(second, [@field:Timestamp]) as VARCHAR)

Above formula is too long.. the simplest way is to use CONVERT to get its time:

CONVERT(varchar(10), [@field:Timestamp], 114)

Link to comment
Share on other sites

  • 0

Hi - I would like to add on this post. In case, you would like to get the month using DATEPART() and add leading zero, you may use these formulas:

RIGHT('0' + CAST(DATEPART(month, [@field:DATE]) AS VARCHAR(10)), 2)

or 

RIGHT('0' + CONVERT(VARCHAR(2), DATEPART(MM, [@field:DATE])), 2)


Result:

January = 1 to 01
February = 2 to 02

Since the DATEPART() function returns an integer, leading zero's will always disappear and need to be manually added like so.


Reference:
https://www.w3schools.com/sql/func_sqlserver_datepart.asp

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...