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.
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.
- 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.
- 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