Smallest value Ignition can read from OPC/Tag

Greeting.
Did anyone know the smallest value Ignition can read from OPC/Tag?
My colleague and I were working on a project that required to read the value from a Tag with 10^-17 and inside Ignition, the value obtained is 0.
I search through this
https://docs.inductiveautomation.com/pages/viewpage.action?pageId=6718387
but nothing is related.
Thanks

This will depend on the datatype of the tag (and is subject to scaling wherever it’s coming from) but a double tag should have a hypothetical minimum value of 2⁻¹⁰⁷⁴:
https://docs.oracle.com/javase/7/docs/api/java/lang/Double.html#MIN_VALUE

Make sure that you’re also changing the number format of the tag to actually be able to display all those digits.

1 Like

Greeting Sir. Thanks for ur reply. Can I come back to u after I try on it?

Hi I manage to solve the problem by changing the data format but I dont know why when I manually assigned the tag path to the field number it wouldn’t show the true value. The true value will only be shown when I direct drag the tag and map to the field number

I modify the deadband and everything seem to work fine now. Thanks