One Statement Per Line

A line of code should not have more than one statement.

Bad code

IF OppEntry.FIND('-') THEN EXIT

Good code

IF OppEntry.FIND('-') THEN   
  EXIT  

Bad code

TotalCost += Cost; TotalAmt += Amt;

Good code

TotalCost += Cost; 
TotalAmt += Amt;

Last modified December 3, 2025: Merge pull request #273 from microsoft/issues/150 (ed0868d) by Henrik Helgesen