I\'m using this insert statement in my code in vba excel but i\'m not able to break it into more than one line
SqlQueryString = \"Insert into Employee values
You cannot use the VB line-continuation character inside of a string.
SqlQueryString = "Insert into Employee values(" & txtEmployeeNo.Value & _ "','" & txtContractStartDate.Value & _ "','" & txtSeatNo.Value & _ "','" & txtFloor.Value & "','" & txtLeaves.Value & "')"