I just want to ask how do I get the first record of a specific column so I can store it in a new table.
ex
col a col b colc
123 456 789
abc cdf sdw
I just want to get anything that is first of col b (which is "456" in my example). I will have to define a string and store it there
dim str as string
str = colB.fields("colB").Row(1) ' i know this is wrong, I just can't figure out what's the right code to use.
ex
col a col b colc
123 456 789
abc cdf sdw
I just want to get anything that is first of col b (which is "456" in my example). I will have to define a string and store it there
dim str as string
str = colB.fields("colB").Row(1) ' i know this is wrong, I just can't figure out what's the right code to use.