Hi,
I am trying to get certain numbers (and strings of text) into a table using the tbl command, but when those numbers or strings have commas they get divided into two different cells. For example, I want two cells containing the values "5,240" and "Encounters, mean". However, the following code:
local test : di %5.0fc 5240
tbl ( `test', "Encounters, mean")
shows four cells:
5 | 240 | Encounters | mean
How do I show fields with commas within an individual cell?