엑셀 위치 찾기 질문

취합하는 엑셀에서의 칼럼이 늘어날 수 있어, 특정 칼럼A 부터 특정칼럼 B 사이에 있는 칼럼을 지우려고 합니다.

Lookup Ranged을 이용하여 G열과 K열을 찾아내었는데, 그 사이에 있는 H,I,J 열을 삭제하려면 어떤 방법이 있을까요?

Hi @dooly031633

You can try reading the excel as datatable.
Then once you know which columns you need to delete, you can use:

dt.Columns.removeAt(columnIndex)

or if you have column names

dt.Columns.Remove(“columnName”)

in a loop.

Then clean the excel sheet and write the datatable back, or you can save it as new excel file.