Join us for an expert-led overview of the tools and concepts you'll need to pass exam PL-300. The first session starts on June 11th. See you there!
Get registeredPower BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.
Hi good day,
Can anyone help me on my Previous Day calculated column. When i publish my report and refresh at night my Previous day column late for almost half day. my time zone +8hrs KL
Solved! Go to Solution.
Hi @AllanBerces ,
May I ask if you have resolved this issue? If so, please mark the helpful reply and accept it as the solution. This will be helpful for other community members who have similar problems to solve it faster.
Thank you.
You can adjust manually by
PreviousDay =
VAR KLToday = TODAY() + 8/24 -- Manually adjust to KL time
VAR KLYesterday = KLToday - 1
RETURN
IF('DAILY PROGRESS'[Progress Date] = KLYesterday, "Today", 'DAILY PROGRESS'[Progress Date
])
Or in power query,
Go to Transform Data
Add a column with DateTimeZone.FixedUtcNow()
Use DateTimeZone.SwitchZone([YourUtcDate], 😎 to convert to KL time
Extract the date part if needed
Please mrk this anwer as complete
You can adjust manually by
PreviousDay =
VAR KLToday = TODAY() + 8/24 -- Manually adjust to KL time
VAR KLYesterday = KLToday - 1
RETURN
IF('DAILY PROGRESS'[Progress Date] = KLYesterday, "Today", 'DAILY PROGRESS'[Progress Date
])
Or in power query,
Go to Transform Data
Add a column with DateTimeZone.FixedUtcNow()
Use DateTimeZone.SwitchZone([YourUtcDate], 😎 to convert to KL time
Extract the date part if needed
Please mrk this anwer as complete
Hi @AllanBerces ,
May I ask if you have resolved this issue? If so, please mark the helpful reply and accept it as the solution. This will be helpful for other community members who have similar problems to solve it faster.
Thank you.
Note that the Power BI service runs on UTC. You should base all your calculations on UTC as well. So instead of using TODAY() use UTCTODAY() etc.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
84 | |
75 | |
68 | |
41 | |
35 |
User | Count |
---|---|
107 | |
56 | |
52 | |
48 | |
40 |