I have string variables in my data set. One of the entries has its own set of quotations.
So when I tell stata:
The portion that says "Cat Treats" is getting blacked out, rather than red (and therefore included in the full quotations).
When I put single quotations around the entire phrase:
Nothing happens.
What should I do here?
Thanks,
So when I tell stata:
HTML Code:
replace var = 43 if ReportType == "Dog treats - Dog treats found at facility (not "Cat Treats") - SIL"
When I put single quotations around the entire phrase:
HTML Code:
replace var = 43 if ReportType == '"Dog treats - Dog treats found at facility (not "Cat Treats") - SIL"'
What should I do here?
Thanks,

Comment