Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I've added an Input box to my sheet that contains a variable called CompanyID. How can I use that variable in my SQL Select statement, which is in my main script (File | Edit Script)? I've tried something like:
select * from company_lkup where company_id = @CompanyID;
but that didn't work.
Does anyone have an example?
Thanks,
Brian
select * from company_lkup where company_id = $(CompanyID);
select * from company_lkup where company_id = $(CompanyID);
Thanks Michael 🙂