I work in the logistics industry. The task I’m trying to automate is as follows:
Search each Bill of Lading number on the carrier’s website.
The information for each container is displayed on the screen. (The number and details of containers vary for each Bill of Lading.)
Extract the information from the website as table data into an Excel file.
The problem is that I want the extracted data to be inputted sequentially from top to bottom, but I don’t know how to do it. I’ve set the storage location to Sheet “A”, but the data overlaps and is displayed at the first row of Sheet A continuously.
Is there a way to display the data sequentially from top to bottom when inputting it? I would greatly appreciate any help.
안녕하세요,
저는 물류 업계에 종사하고 있습니다.
제가 자동화 하려는 업무는 다음과 같습니다.
각 Bill of lading 넘버를 선사 웹사이트에 검색합니다.
각 컨테이너의 정보가 화면에 표시됩니다. ( Bill of lading마다 컨테이너 갯수와 정보가 다릅니다.)
웹사이트의 정보를 Extract table data로 엑셀파일로 가져옵니다.
문제는 가져온 데이터를 위에서 부터 아래로 차근차근 입력하고 싶은데, 하는 방법을 모르겠습니다. 저장위치를 Sheet “A” 위치로 설정했는데, A시트 첫 행 위치에 overlap되어 데이터가 표기되고 있습니다.
데이터를 입력할 때 위에서 아래로 차례대로 표시가 될 수 있는 방법이 있을까요? 많은 도움 부탁드립니다.
Extract it to a datatable variable instead of directly extracting to sheet…and then as the next activity use merge datatable and merge the extracted table to another table called finaldt and then after loop use write ramge and write the data to excel using finaldt
Thanks for advising. If you don’t mind, can you show me screenshots how to make this activity by any chance? I’m very beginner of this program, so I’m in trouble with understanding your direction.