Igniting writing a null to plc tag (string)

I am trying to figure out why, when a string tag goes blank, a "null" is written as a value. Can one help me to understand the reasoning behind that.

Thanks

What type of tag is it? OPC? Memory? Expression? Query?
What it's the source of the tag value?

Without understanding how the "write" is occurring we won't be able to help you. Is there a bidirectional binding at play? A script? Is it an expression tag?

It is an OPC tag connection through Kepsever that is map to a AB PLC. There is no bidirectional binding, script, or expression tag at play.

What happen is when a trouble event happens, plc writes something like "Trouble at Station xxx" and this is displayed until the trouble is cleared. In the plc once the trouble is cleared it clears the tag leaving it empty. So the PLC tag itself shows empty, but the value in the tag browser in ignition designer show null.

Try an expression transform on the tag - something like

if(isNull({value}), "", {value})

This would replace a null with an empty string (which is not the same thing!).