Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
5 years ago
Solved

Relative moving Forward one day after 8PM

So I am working on a chart that shows production to date vs hourly target to date. I'm using a realtive filter to filter the data down to todayproblem is that  at 8PM every evening it moves the date filter to the next day and causes my graph to go blank. 

Is anyone aware of a way to deal with this default behavior because it doesn't make any sense to me.

 

thanks,

 

  • Anonymous's avatar
    Anonymous
    5 years ago

    Unfortunately I wasn't able to get it to work using the filter it still filters based on UTC time. I got it working by filtering out the data for today in Power Query and just removing the filter in the visual completely. Thank you for all the help 

5 Replies

  • v-robertq-msft's avatar
    v-robertq-msft
    Icon for Community Support rankCommunity Support

    Hi, Anonymous 

    According to my research, here’s a method that may help to solve your problem, you can take a look:

    1. Go to query editor>Click on the button of date column on the left top corner and choose "Date/Time".  And then you will see what time is set in your date column:

     

    As we can see, I don’t have the time difference with my local time.

    1. Then find the time difference between the column and your local time,then add a custom column using the M code below to adjust the time, like this:
    Custom= [Date]-#duration(0,4,0,0)

     

    And you can get the correct data column, like this:

    Thank you very much!

     

    Best Regards,

    Community Support Team _Robert Qin

    If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

    • Anonymous's avatar
      Anonymous
      Not applicable

      I was looking at that as well unfortunately the data is already in the right timezone. But now that I'm typing this out I'm realizing I could possibly use it as a "filter" date and then use my actual date. I'll try it out tonight and let you know how it goes.

      • Anonymous's avatar
        Anonymous
        Not applicable

        Unfortunately I wasn't able to get it to work using the filter it still filters based on UTC time. I got it working by filtering out the data for today in Power Query and just removing the filter in the visual completely. Thank you for all the help