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 data set similar to the below example.
| On Hire Date | Off Hire Date | Hire Duration (Days) |
| 01/01/2020 | 10/01/2020 | 10 |
| 02/01/2020 | 10/01/2020 | 9 |
I want to create a DAX formula that will show me any rows that are above 10 days for instance.
Please can anyone help?
Many thanks,
E
Solved! Go to Solution.
Hi @Anonymous ,
Hi @Anonymous ,
You could follow the way of @camargos88 to filter out in filter pane. Or you could use a IF function to implement it.
Please try this:
Measure =
var diff = DATEDIFF(MAX('Table'[On Hire Date]),MAX('Table'[Off Hire Date]),DAY)+1
return
IF(diff>=10, diff)
Hi @Anonymous ,
You could follow the way of @camargos88 to filter out in filter pane. Or you could use a IF function to implement it.
Please try this:
Measure =
var diff = DATEDIFF(MAX('Table'[On Hire Date]),MAX('Table'[Off Hire Date]),DAY)+1
return
IF(diff>=10, diff)
@Anonymous , refer if this can help
or datediff([On Hire Date],[Off Hire Date],day)+1
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
| User | Count |
|---|---|
| 38 | |
| 36 | |
| 33 | |
| 31 | |
| 28 |
| User | Count |
|---|---|
| 129 | |
| 88 | |
| 79 | |
| 68 | |
| 63 |