Forum Discussion

AW31's avatar
AW31
Icon for Helper I rankHelper I
6 years ago
Solved

Convert Date Column from UTC to Central Time

I am trying to add a date column in Power Query that takes the current date column coming in from DirectQuery (comes in on UTC time) and changes it to Central Time (-5 hours from UTC). I searched sim...
  • v-lili6-msft's avatar
    6 years ago

    hi, AW31 

    For your case, I would suggest you create a new calculated column in power bi by DAX as below:

    Central Time = 'Table'[Post Time]- TIME(5,0,0)
    Regards,
    Lin