Don't miss your chance to take exam DP-600 or DP-700 on us!
Request nowLearn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
hi is it possible to use a filter in filter pane where created date = updated date
since filter accepts only columns how can we do this
Solved! Go to Solution.
Hi @sainig546 ,
Yes you can achieve this by creating a flag as a calculated column and use it in your filter pane.
I am assuming you have created date column in your data in Power BI, then you can create this clculated column using DAX:
date_comparison_flag =
IF ( yourtablename[Created Date] = TODAY (), 1, 0 )
Make sure to replace the yourtablename[Created Date] this with your table name and column name.
This above calculation will give you a column date_comparison_flag with values 0/1.
Then use this column in the filter pane to select date_comparison_flag = 1.
This will filter your report page where created date = today's date.
Thanks,
Pragati
Hi @sainig546 ,
You can create a measure like below and use it as filter in your visual:-
Measure = COUNTROWS(FILTER('Table','Table'[created date] = 'Table'[updated date]))
Thanks,
Samarth
Best Regards,
Samarth
If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
Connect on Linkedin
Hi @sainig546 ,
You can create a measure like below and use it as filter in your visual:-
Measure = COUNTROWS(FILTER('Table','Table'[created date] = 'Table'[updated date]))
Thanks,
Samarth
Best Regards,
Samarth
If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
Connect on Linkedin
Hi @sainig546 ,
Yes you can achieve this by creating a flag as a calculated column and use it in your filter pane.
I am assuming you have created date column in your data in Power BI, then you can create this clculated column using DAX:
date_comparison_flag =
IF ( yourtablename[Created Date] = TODAY (), 1, 0 )
Make sure to replace the yourtablename[Created Date] this with your table name and column name.
This above calculation will give you a column date_comparison_flag with values 0/1.
Then use this column in the filter pane to select date_comparison_flag = 1.
This will filter your report page where created date = today's date.
Thanks,
Pragati
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the February 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 50 | |
| 40 | |
| 37 | |
| 14 | |
| 13 |
| User | Count |
|---|---|
| 85 | |
| 69 | |
| 37 | |
| 28 | |
| 27 |