Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Prepping for a Fabric certification exam? Join us for a live prep session with exam experts to learn how to pass the exam. Register now.

Reply
IAM
Helper III
Helper III

Calculated column for "Today" is not updating in Power BI Service

Hi all,

 

I have a calculated column to give a mark if a line is due on 'today' and I have that filter on in a table. So, on March first I uploaded the file to Service and I saw the jobs that were due on March first.

 

Today it is March third and I still see the jobs from March first. I refreshed the report and the dataset, but nothing is changing. When I open the Power BI file, it jumps to March 3th immediately. 

 

Is it a bug, or am I doing something wrong? Thanks!

1 ACCEPTED SOLUTION
pacoduabe
Regular Visitor

Since it's a calculated column it won't calculate again today's date until it's refreshed. It should work fine if you refresh the dataset and wait until it completes. In any case, you can set a measure to do this filter, such as:

 

INT ( 'Table'[Date] >= TODAY() )

 

You need to use INT in order to apply the filter (it would return 1 if true and 0 if false), you can use the previous measure as a visual filter. It won't let you add it to a filter box object. Hope this helps you anyhow.

View solution in original post

1 REPLY 1
pacoduabe
Regular Visitor

Since it's a calculated column it won't calculate again today's date until it's refreshed. It should work fine if you refresh the dataset and wait until it completes. In any case, you can set a measure to do this filter, such as:

 

INT ( 'Table'[Date] >= TODAY() )

 

You need to use INT in order to apply the filter (it would return 1 if true and 0 if false), you can use the previous measure as a visual filter. It won't let you add it to a filter box object. Hope this helps you anyhow.

Helpful resources

Announcements
PBIApril_Carousel

Power BI Monthly Update - April 2025

Check out the April 2025 Power BI update to learn about new features.

Notebook Gallery Carousel1

NEW! Community Notebooks Gallery

Explore and share Fabric Notebooks to boost Power BI insights in the new community notebooks gallery.

April2025 Carousel

Fabric Community Update - April 2025

Find out what's new and trending in the Fabric community.

Top Solution Authors