Kompal wrote:
> Hi There,
> I have 5 variables(floats) in following format: (the first row looks like
> this):
> x y z t q
> 123456 78965 12345 45678 56
>
> I want to make a new Identifier variable (preferably string) which just
puts
> the five variables side by side like:
> 12345678965123454567856
>
> I tried gen str23 caseid = x+y+z+t+q but it gives the error type mismatch.
> I also tried to convert floats to strings using stattransfer but it didn't
> work I am getting blank columns. I can't do it mathematically as the
number
> created will be more than sixteen digits and won't solve my purpose.
> How should I proceed???
>
Use -string- function:
. gen str23 caseid=string(x) +string(y) + string(z) + string(t) +string(q)
Zhiqiang
Menzies School of Health Research
Darwin Australia
*
* For searches and help try:
* http://www.stata.com/support/faqs/res/findit.html
* http://www.stata.com/support/statalist/faq
* http://www.ats.ucla.edu/stat/stata/