Message 1 of 4
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
I'm working on this awesome building code analysis routine. It requires many cross lapping answers by the user.
I'm close. As always forgive my "Frankenlisping"
Need help with the following..
(= distcode 1030)(= 601TOC "1A");;when this is met
(= 602OCC "A")(= 602OCC "B")(= 602OCC "E")(= 602OCC "F-2")(= 602OCC "I")(= 602OCC "R")(= 602OCC "S-2")(= 602OCC "U") ;;for these
(progn (setq 602rating 1) (setq 602text1030 1) );;do this
Below is where I've ended up.
(if (and (= distcode 1030)(= 601TOC "1A")(or(= 602OCC "A")(= 602OCC "B")(= 602OCC "E")(= 602OCC "F-2")(= 602OCC "I")(= 602OCC "R")(= 602OCC "S-2")(= 602OCC "U")))
(progn (setq 602rating 1) (setq 602text1030 1) )
);end if
Solved! Go to Solution.