Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more
I have this DAX code to show how many minutes a process ran:
However, it's showing anything less than 1 minute, but more than 1 second as 1 minute. If I have the minimum time on 1, it should not show any rows less than 1 minute.
For example, these rows are returned with the slicer above applied, but shouldn't.
Please help!
Solved! Go to Solution.
I figured it out. Changed my DAX to:
 
					
				
		
We are really glad to know that the problem has been solved. We're also glad that you've shared your solution in the community, it's very helpful.
Please consider accepting your post as a solution to help other members find solutions faster.
Certainly, if there is anything else we can do for you, please do not hesitate to contact us.
Best Regards,
Leroy Lu
@J918 - The slicer is turning the correct values for what you are doing. In order for this to work, you will need to turn your column into an integer for minutes, try:
DATEDIFF(META[PROCESS_START_TIME], META[PROCESS_END_TIME], SECOND) / 60
If this works, please accept it as a solution.
I figured it out. Changed my DAX to:
 
					
				
				
			
		
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.
 
            | User | Count | 
|---|---|
| 9 | |
| 5 | |
| 4 | |
| 3 | |
| 3 | 
| User | Count | 
|---|---|
| 23 | |
| 12 | |
| 11 | |
| 10 | |
| 9 |