This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. We're covering it all. You won't want to miss it.
Learn moreDid you hear? There's a new SQL AI Developer certification (DP-800). Start preparing now and be one of the first to get certified. Register now
Hi,
The data going to my tachometer is a division of two columns, and some of the values in the denominatior column are zero - which brings the start value of tachometer to infinity.
I do not want to change the data to a measure using IF or DIVIDE and place 0 or 1 as start value. So without doing any change in the data, can I change the widget to remove this infinity in start value?
TIA
Solved! Go to Solution.
Hi a_chhibber,
From your description, it seems you don't want to replace infinity with 0 (or 1), and modify the underlying data model, right?
When you do divide aggregation, you can replace 0 with other value which you want, eg 1:
Measure = Max([Column1])/IF(Max([Column1])=0,1,Max([Column1]))
Regards,
Jimmy Tao
Hi a_chhibber,
From your description, it seems you don't want to replace infinity with 0 (or 1), and modify the underlying data model, right?
When you do divide aggregation, you can replace 0 with other value which you want, eg 1:
Measure = Max([Column1])/IF(Max([Column1])=0,1,Max([Column1]))
Regards,
Jimmy Tao
Check out the April 2026 Power BI update to learn about new features.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 36 | |
| 32 | |
| 31 | |
| 21 | |
| 15 |
| User | Count |
|---|---|
| 68 | |
| 57 | |
| 31 | |
| 29 | |
| 22 |