@agoktas I can recommend @niketn's answer if you continue using the "Change %" format. At the company I work at it has been best practice to use underscores "_" as the replacement for spaces in field names. This will simplify searches down the line because you will not have to place quotes before and after your field names. Alternatively, another method we use for naming fields is to name them without spaces or underscores and to simply capitalize the first letter of each word in the field name. For instance your field name could be "MyNewFieldName". Lastly, while I do not think it is a matter of "best practice", I would personally shy away from using symbols in your field names and spell out the symbol's name for instance "Change_Percent". These would be my suggestions on how to solve your bumps in the road, but either way @niketn's answer works well if you want to stay with your current field naming format.
Suggested Alternatives:
Underscores: "Change_%"
No spaces: "Change%"
Only plain text: "ChangePercent"/"Change_Percent"
Have a great day!
... View more