I'm using VBA and trying to pass quite a long SQL query (>255 chars in length). But of cause when i try to pass this to DoCmd.RunSQL strSQL it of cause cannot continue since it only has a truncanated version of the complete query.
Can i insted put the statement into two strings and somehow run them together - DoCmd.RunSQL strSQL1 & strSQL2
Can i insted put the statement into two strings and somehow run them together - DoCmd.RunSQL strSQL1 & strSQL2