I have written several articles about using Notepadd++ for writing long formulas or SQL statements. I just found out that one of the features I use in Notepad++ has been (partially) available in Crystal Reports forever. I never noticed. The feature is called “column mode” and allows you to select text in a column without selecting the entire row.
Lets say you start a formula with DateTime variables like this:
WhilePrintingRecords;
DateTimeVar DateA;
DateTimeVar DateB;
DateTimeVar DateC;
DateTimeVar DateD;
DateTimeVar DateE;
Then you realize that you want them to be Date instead of DateTime. You can highlight a “column” made up of the word “Time” on all 5 rows at once, and then hit delete. To select a column you hold down the ALT key and then click the mouse in the upper left corner of rectangle and drag to the lower right corner. In this case you would start just before the “T” in Time in the first row, and drag down and across until your cursor was just after the “e” in Time in the last row. By using the ALT key you will highlight a rectangle of 4 characters across and 5 rows down. Then you hit delete and just those 20 characters are deleted.
You can also copy and paste a rectangle. Say you have to write a formula that is something like this:
If month({Trans.Date}) = 01 then {Balance.Pd01} else
If month({Trans.Date}) = 02 then {Balance.Pd02} else
If month({Trans.Date}) = 03 then {Balance.Pd03} else
If month({Trans.Date}) = 04 then {Balance.Pd04} else
If month({Trans.Date}) = 05 then {Balance.Pd05} else
If month({Trans.Date}) = 06 then {Balance.Pd06} else
If month({Trans.Date}) = 07 then {Balance.Pd07} else
If month({Trans.Date}) = 08 then {Balance.Pd08} else
If month({Trans.Date}) = 09 then {Balance.Pd09} else
If month({Trans.Date}) = 10 then {Balance.Pd10} else
If month({Trans.Date}) = 11 then {Balance.Pd11} else
If month({Trans.Date}) = 12 then {Balance.Pd12}
Normally I would start by typing the first row and then copy it 11 more times. Then I would change each row to use a different number from 1 to 12. Once I have changed the column of values after the ‘=’ sign I could copy that 2-digit column and past it over the values in the other 2-digit column in one step.
To do this you select the 2 digit column as a rectangle using the ALT key. You can right clock in the column to copy (or use Ctrl-C). Then you select the other 2-digit column and right-click to paste (or use Ctrl-V).
Note, in Crystal you should select these rectangles starting in the upper left corner, especially if you plan to copy and paste. You can get inconsistent results if you start in one of the other corners.
NotePad++ has a much more sophisticated column mode, allowing you to:
- Paste a single word or character value into multiple rows at once.
- Select a column and start typing. The new text is added to ALL the rows at the same time.
- Use Shift-Alt to mark the column using arrow keys , instead of the mouse.
- Select the column of text starting in any corner.
Unfortunately, these don’t work in Crystal.
(For examples of my most popular formulas, please visit the FORMULAS page on my website.)