Forum Discussion

Justas4478's avatar
Justas4478
Icon for Post Prodigy rankPost Prodigy
2 years ago
Solved

Converting timestamp to date and time using measure

Hi, I am trying to convert timestamp that is wholenumber in to date and time or at least date.
I tried to createa measure using FORMAT but it failed.
I can't use calculated column because I am using company data model.
anyone would be able to help with this measure?

 
Thanks.

 

  • Hi Justas4478 

    try

    Measure = 
    var _d = MIN(Table[LatestTimestamp])
    
    RETURN
    
    DATE(LEFT(_d, 4), MID(_d, 5, 2), MID(_d, 7, 2)) & " " & TIME(MID(_d, 9, 2), MID(_d, 11, 2), RIGHT(_d, 2))

2 Replies

  • az38's avatar
    az38
    Icon for Community Champion rankCommunity Champion

    Hi Justas4478 

    try

    Measure = 
    var _d = MIN(Table[LatestTimestamp])
    
    RETURN
    
    DATE(LEFT(_d, 4), MID(_d, 5, 2), MID(_d, 7, 2)) & " " & TIME(MID(_d, 9, 2), MID(_d, 11, 2), RIGHT(_d, 2))