I'm writing a home-grown "add selected" program and I'm running into a mental block... I'd like the program to perform certain tasks based on a block selected. For example, if the block is named BLOCK1 then do task 1, if it's called BLOCK2, then do task 2. If it's called something else, then do some other task. So..... I've got my COND statement structured something like this... (cond ((= strBlockName "Block1") ; do something here... ) ((= strBlockName "Block2") ; do something else here... ) ((= some other block name) ; do some other task here... ) ) And my question is this: What's the proper syntax for the last COND statement?!? [insert mental block here]