Nov 14 2022 03:57 AM
Solution=TEXT(E3,IF(E4<1,"0."&REPT("0",-LOG(E4)),"0"))
Nov 24 2022 02:55 AM
The Resolution of UUT is changed the value is not popup properly.
Nov 24 2022 03:36 AM
In your previous example, the resolution was always a power of 10: 1 or 0.1 or 0.01 or 0.001.
Your current example isn't helpful since Range is the whole number 10. Please provide some relevant examples, for example with Range = 123.456 and Resolution = 0.7 or Resolution = 0.09 etc.
A sample workbook or a screenshot is easier for me than a video.
Nov 24 2022 03:45 AM
Nov 24 2022 04:23 AM
Does this do what you want?
=TEXT(E3,IF(E4<1,"0."&REPT("0",-ROUNDUP(LOG(E4),0)),"0"))
Nov 14 2022 03:57 AM
Solution=TEXT(E3,IF(E4<1,"0."&REPT("0",-LOG(E4)),"0"))