Paul Makepeace wrote: > Any suggestions/hacks how to get around this gratefully received: I > have a nasty chain of elsifs and I'd like to get a tmp variable into > the last conditional without declaring it miles away...
How about making the last elsif simply an else, then in the block that follows declaring your temporary variable and have an if that does the condition? It'll only work for the final condition in a chain, but that sounds good enough here. Smylers