I would like to split some of the variable labels in my do file across two lines so that all variable names align with a long list in my do file. I have tried a few strategies below, but all receive an invalid syntax error where the variable names wrap to the second line.
Strategy 1:
Strategy 2:
Strategy 3
Any suggestions are much appreciated.
Strategy 1:
Code:
label variable owner "Owner (Agency & Contact if External - Program or" ///
+ "HART if Internal)"
label variable developer "Developer (Agency if external - Person if internal" ///
+ "to DRHD)"
Code:
label variable owner "Owner (Agency & Contact if External - Program or" /*
*/ + "HART if Internal)"
label variable developer "Developer (Agency if external - Person if internal" /*
*/ + "to DRHD)"
Code:
#delimit ;
label variable owner "Owner (Agency & Contact if External - Program or" /*
*/ + "HART if Internal)";
label variable developer "Developer (Agency if external - Person if internal" /*
*/ + "to DRHD)";
#delimit cr

Comment