Bookmark and Share

Notice: On April 23, 2014, Statalist moved from an email list to a forum, based at statalist.org.


[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: st: If-command not accurate


From   "Dimitriy V. Masterov" <[email protected]>
To   [email protected]
Subject   Re: st: If-command not accurate
Date   Tue, 7 Aug 2012 09:34:21 -0700

You are misunderstanding how if works. This is a common misconception.
The first pass through the loop, the condition "if PF_dy == PF_ret6"
means if the first observation of PF_dy equals PF_ret6, do some stuff.
You probably want -if "`var"=="PF_ret6" {-. This does the string
comparison you had in mind.

DVM

On Tue, Aug 7, 2012 at 9:26 AM, Daniel Brodback <[email protected]> wrote:
> Dear all,
>
> in a foreach-loop, I am trying to "catch" a specific case and therefore I implement this with an if-command.
>
> For my varlist, I want certain commands to be executed but when var "PF_ret6" occurs, I need different commands.
>
> I implemented this in the following way (Stata SE 11.2):
>
> foreach var of varlist PF_dy-PF_ret6 {
>         if `var' == PF_ret6 {
> ...
> }
> else
> {
> }
> }
>
> The weird behavior is, that for the first variables everything works as expected. But when the variable prior to PF_ret6 is reached (named PF_lret6), it also enters the if-condition.
> Is there a way to assure that the if-command only uses PF_ret6 but not PF_lret6?
>
> Kind regards,
>
> Daniel
> *
> *   For searches and help try:
> *   http://www.stata.com/help.cgi?search
> *   http://www.stata.com/support/statalist/faq
> *   http://www.ats.ucla.edu/stat/stata/
*
*   For searches and help try:
*   http://www.stata.com/help.cgi?search
*   http://www.stata.com/support/statalist/faq
*   http://www.ats.ucla.edu/stat/stata/


© Copyright 1996–2018 StataCorp LLC   |   Terms of use   |   Privacy   |   Contact us   |   Site index