Select to view content in your preferred language

Using special character in field name inside Arcade Expression

127
2
Jump to solution
a month ago
AndrewMurdoch1
Frequent Contributor

Good Day

I have a field that starts with a % sign %blah,  inside a value expression can I use that value escaped?  Something like:

When($feature.%blah <= 0)

If I leave the % sign, I get an error, and I can't find any information on escaping the % sign, is it possible?

Thanks

0 Kudos
1 Solution

Accepted Solutions
KenBuja
MVP Esteemed Contributor

Does this work?

When($feature['%blah'] <= 0)

 

View solution in original post

0 Kudos
2 Replies
KenBuja
MVP Esteemed Contributor

Does this work?

When($feature['%blah'] <= 0)

 

0 Kudos
AndrewMurdoch1
Frequent Contributor

 Possible, it stopped complaining about the % sign when I did that, fields that don't have % sign are rendering properly, but I can't get %blah to show up correctly. 

0 Kudos