Hello all,

I have got the following string which i need to store inside VBA script.

{"trackingId":"Q505","country":"GB","shipmentType":"Delivery"}
There is my following attempt:

paramStr = CHAR(123) & CHAR(34) & "trackingId" & CHAR(34) & ":" & CHAR(34) & "Q505" & CHAR(34) & "," & CHAR(34) & "country" & CHAR(34) & ":" & CHAR(34) & "GB" & CHAR(34) & "," & CHAR(34) & "shipmentType" & CHAR(34) & ":" & CHAR(34) & "Delivery" & CHAR(34) & CHAR(125)
But when I try to run the code it errors out highlighting first CHAR with a error message saying: Sub of Function not defined.

Please advice.