Guides/ReportDesign/15.0-Expressions-in-Izenda.md
... ...
@@ -51,7 +51,7 @@ We can also use expressions to manipulate text. Let’s say that we have 'ShipC
51 51
52 52
**Using the following expression:**
53 53
54
-``[ShipCity], + ‘, ‘ + [ShipCountry]``
54
+``[ShipCity], + ', ' + [ShipCountry]``
55 55
56 56
![expressions3](http://wiki.izenda.us/FAQ/FAQ/expressions3.png)
57 57
... ...
@@ -61,11 +61,13 @@ This would combine ‘Berlin’ and ‘Germany’ to ‘Berlin, Germany’. Not
61 61
62 62
**In the same as in the example, we can add a static text denomination to a numerical value:**
63 63
64
-``[Freight] + ‘USD’ -> xxxxUSD``
64
+``[Freight] + ' USD' -> xxxx USD``
65 65
66 66
**We could also write:**
67 67
68
-``‘$’ + [Freight] -> $xxxx``
68
+``'$' + [Freight] -> $xxxx``
69
+
70
+**Parenthesis:** Prior to release 6.7.263, expressions that included literal parentheses (**'\('** and **'\)'**) would not render correctly. This has been fixed. However, expressions that use non-escaped parentheses (**'('** and ')'**) are still invalid to prevent SQL injection.
69 71
70 72
##15.3 Advanced Expressions
71 73