Hi!
How can I limit the number of characters in a table output?
Example:
This sample output has a 200 character limit…
Many thanks for your help!
Hi!
How can I limit the number of characters in a table output?
Example:
This sample output has a 200 character limit…
Many thanks for your help!
Use Truncate from Manipulation from Data Bindings on your column.
Or use substring manipulation:
var1.value.substr(0,3) this will limit output to 3 characters.
thank you very much, that works