Hi I am using VS 2008. I am trying to combine a set of unique company id's from an excel connection to rows from a sql table.
I have
But this comes out like.
Name(sql)----------------Description(sql)---------company_id(excel)
AP-----------------aaaa bbb-------------null
GL-----------------vvcc sss-------------null
null---------------null------------------18
null-------------null--------------------19
null------------null--------------------20
When I want.
Name------------description------company_id
AP---------------aaa bbb--------18
gl----------------vvcc sss-------18
AP---------------aaa bbbb-------19
gl----------------vvcc sss-------19
ap---------------aaaa bbb-------20
gl----------------vvcc sss-------20
Perhaps each company_id needs to be put in a variable or there is another solution. Not sure I am stuck and can't think of way top do this, any help would be appreciated.