Excel Macros - Too many line continuations
- by pojomx
Hi, I have a "large" sql query (like 200 lines)...
dim query as string
query = "..................................." & _
"..................................." & _
.... Like a lot lines later...
"..................................."
function query,"sheet 1"
When i do this, excel says "Too many line continuations."
What is the best way, to avoid this?
Thanks for your help.