How to convert timestamp from utc to +10

Ivan Vasenev 5 Reputation points
2025-09-03T01:34:58.6333333+00:00

I have a problem. Don't know how to convert timezone to mine

SQL Server Analysis Services
SQL Server Analysis Services
A Microsoft online analytical data engine used in decision support and business analytics, providing the analytical data for business reports and client applications such as Power BI, Excel, Reporting Services reports, and other data visualization tools.
{count} votes

1 answer

Sort by: Most helpful
  1. Dinesh Yadlapalli 0 Reputation points Microsoft External Staff Moderator
    2025-10-23T11:47:38.5533333+00:00

    Hi @Ivan Vasenev ,

    Thank you for reaching out to the Microsoft Q & A Forum.

    As you mentioned in your question, you want convert timestamp from UTC to +10. Please refer below workarounds.

    1. In SQL server, you can try below two queries to get the desired result.

    Query 1:

    SELECT

    ID,
    
    UTCDateTime AS OriginalUTC,
    
    DATEADD(HOUR, 10, UTCDateTime) AS ConvertedToUTCPlus10
    

    FROM SampleUTCData;

    Query 2:

    SELECT

    GETUTCDATE() AS CurrentUTC,
    
    DATEADD(HOUR, 10, GETUTCDATE()) AS CurrentUTCPlus10;
    

    Please refer below output snap.

    User's image

    1. In SSAS tabular model, please try below calculated column by using DAX code

    UTCPlus10 = DATEADD(YourTable[UTCDateTime], 10, HOUR)

    I hope this information helps. Please do let us know if you have any further queries.

     

    Regards,

    Dinesh


Your answer

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