
익숙한 내용은 제외하였다. File Access Level App Integration > Excel 모든 것이 백그라운드에서 실행되며, MS Excel 설치되어있지 않아도 된다. ❗.xlsx 파일에만 지원된다. Excel App Integration System > File > Workbook MS Excel 반드시 설치되어 있어야 한다. .xls .xlsm .csv .xlsx 모두 지원된다. 파일이 열려있지 않은 상태에서는 각 activity마다 해당 파일을 열고 저장하고 닫는 작업을 반복한다. Activities Append Range 지정한 엑셀 시트의 끝단에 Datatable을 이어붙인다. 시트가 존재하지 않으면 새로 생성한다. Get Table Range Locates and extracts ..

Arrays : for defined sets of data (the months of the year, a predefined list of files in a folder) List : better when the collection might require size changes. Array { } 용량이 정해져 있는 데이터 집합(fixed-size) List 포함된 객체들이 지정된 자리가 있다.(index) Array와 달리 저장할 수 있는 데이터의 수가 정해져있지 않다. 생성자 Array or List에 아이템 추가 1. activity를 이용하여 append 할 수 있다. 2. activity 이용 (Concat method) arrayVar.Concat({i..