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! It's time to submit your entry. Live now!
So I got these timestamps "hh:mm:ss" and I would like to filter out everything above "00:15:00" minutes. I cant find any function to do that, do I need to make a measure and creata a new column?
Solved! Go to Solution.
This should fix it.
Use this formula, and then add it as a filter to your matrix, or page, or all pages.
This should fix it.
Use this formula, and then add it as a filter to your matrix, or page, or all pages.
Thank you, this worked perfectly!
@Anonymous can you please share sample data along with expected result after masking any sensitive data
Please try something like this
FILTER('Table',Minute("00:15:00)>15)
It doesnt work, i'm really new to this.
I tried this code:
FilterAbove15Min = FILTER('Överlämning';[Inom 15 minuter]("00:15:00)>15)
But I get Syntax error:
The following syntax error occurred during parsing: Invalid token, Line 1, Offset 40, "00:15:00)>15)))).
"Överlämning" is the whole table, and "Inom 15 minuter" is the column with the timestamps.
@Anonymous
Please create a calculated column as below
column = IF(MINUTE('Överlämning'[Inom 15 minuter])>15,TRUE(),FALSE())
The Power BI Data Visualization World Championships is back! It's time to submit your entry.
Check out the January 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 56 | |
| 40 | |
| 38 | |
| 21 | |
| 20 |
| User | Count |
|---|---|
| 142 | |
| 105 | |
| 63 | |
| 36 | |
| 35 |