Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I feel dumb asking this, but how can you display just an equal sign in a text box without Qlikview thinking you're trying to type an expression and getting an error?
Using single quotes around '='
This still shows up as '=' in the text

try this
= '='
=chr(61)

This might work also
=Chr(61)
This works! Thank you for the quick response!