Comment Re:cognos powerplay (Score 1) 261
This must be a troll. Powerplay Transformer is a textbook example of how not to do a UI. Ever saw a program that shows a "do you really want to cancel?" popup when you try to cancel out of a properties dialog? How about this syntax in expression editor:
if (foo isnull) then (1) else (0)
Actually, this doesn't work, but this does:
if (foo isnull ) then (1) else (0)
Need more examples?