엑셀 빈 값 채욱;

안녕하세요!

노란 빈 값에 바로 위 데이터로 채우고 싶은데, 방법이 있을까요?

  1. 부품번호를 특정 웹사이트에 검색
  2. 검색했을 때 데이터 테이블 형태로 검색되어 엑셀에 붙여넣기
  3. 여러개의 데이터 데이터 테이블로 나타나서 부품번호를 그 행에 맞게 입력하고 싶습니다.

hi @seungmin1.lee ,
In here


that’s right?
You can find 1st blank index then write
to find 1st blank index, you can follow this steps
1.read range all to get data table
2.use for each row of data table if row = blank in here you can use a index type in32 to count
it will get index of blank row

other way you can see
dtData.AsEnumerable.ToList.FindIndex(Function (r) (isNothing(r(0)) OrElse String.IsNullOrWhiteSpace(r(0).toString.Trim)))

regards,