Skip to content
Advertisement

VBA & SQL how to select specific values based on range in excel?

I am newbie in connection of vba (excel) and oracle database. I have tried to look for some information but I could not find anything that would work for me.

I want to write a query that will return me only rows in which there is a specific values. My query looks like this: SQLStr = SQLStr = "SELECT NGKHFHCD, NGKHFNAM, NGKHGNKA, NGKHSZIC, NGKHMTRC, NGKHSNZC, NGKHGCHC, NGKHKKKS, NGKHKTKS FROM NGKH order by NGKHFHCD"

But I want to have something that will be like this SQLStr = "SELECT NGKHFHCD, NGKHFNAM, NGKHGNKA, NGKHSZIC, NGKHMTRC, NGKHSNZC, NGKHGCHC, NGKHKKKS, NGKHKTKS FROM NGKH WHERE NGKHFHCD = SHeet1(A2:A)"

I just don’t want to pull out whole table from oracle, because it will take a lots of time so I thought that maybe I can return only specific rows from that table. Also if there is no searched value in the table I would like to mark it in someway.

Is there anyway to solve it?

my code:

Advertisement

Answer

Untested but this would be close:

User contributions licensed under: CC BY-SA
3 People found this is helpful
Advertisement