Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
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!
Solved! Go to Solution.
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.
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.
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!