Parsing Cell Data as a String?

Hello,

Can I parse data values from a table as a string?

Thanks

Well, when you want a variable in text, you’d use ${variableName}. So,

ImANumber = table.cellNumericValue(1,1)
ImAString = "${table.cellNumericValue(1,1)}"
ImInALongerString = "This number is ${table.cellNumericValue(1,1)}."