BikeBoy20032004
MIS
I'd like to code my GRANT EXECUTE statements in Excel, like if I have a sql stored procedure called myProc in Excel A1 field, this is the formula I'd type in B1:
="grant execute to " & A1 & CHAR(10) & " go"
But the result contains quotes, like this:
"grant execute to myProc
go"
How can I get rid of these quotes?
Thanks!
="grant execute to " & A1 & CHAR(10) & " go"
But the result contains quotes, like this:
"grant execute to myProc
go"
How can I get rid of these quotes?
Thanks!