I'm writing a stata program in a .do file, and would like to provide default values if the user does not supply some parameters. To do so, I'd like to check if a macro is undefined. I've come up with a hacky way to do this:

*** For a local macro with the name value:
if `value'1 != 1 {
    ...do stuff
}

But I'd like to know if there is a idiomatic way to do this.

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

If it's undefined, the contents of the marco would be empty. You can do this:

if missing("`mymacroname'") {
    display "Macro is undefined"
}

The quotes aren't really needed if the macro will contain a number. The missing(x) function can handle strings and numbers. It is kind of like testing (x=="" | x==.)

link|improve this answer
I don't think there's an "official" way to do this kind of thing. You can read the .ado files that come with Stata (in C:\Program Files\...) They do different things for this kind of test. You might be interested in the cond() function, too. – Keith Mar 7 '11 at 18:53
I failed to specify this in my original question, but I'm actually trying to check if a macro name is not undefined. It turns out that if !missing(`macroname') { works for this. Thanks so much! – Wilduck Mar 8 '11 at 4:36
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.