I want to put or cut my string into couple of lines. How could I do that? this is the line of codes I want to cut (but they are still in string).
sql = "INSERT INTO tblClientInfo (genClientID, fullName, address, comaker, colateral, atmPIN, principal, "
& "interest, principalInWords, terms, interestPerMonth, principalperMonth, totalPayment, interestPercentage, "
& " interestBal, principalBal, theDate, totalBal)"
This code returns an error. What is the proper way of concatenation or cutting a long string?