The "format code" button can make a program easier to read.
@ChrisHemedinger wrote a blog post about how you can do this in Enterprise Guide.
In the screen shot below, I typed a bunch of SAS statements. While you can write programs this way, it can be difficult for others to read them and understand them quickly.
Example of messy SAS codeAfter I press that "format code" button, the program looks like the screen shot below. Statements are placed on separate lines, some statements are automatically indented, and blank lines are inserted between PROCs, data steps, and comments.
Nicely formatted SAS code
... View more