[ Excel에서 실행하는 VBA 스크립트 ] Sub PrintMatrix(profileList As String) Dim profileArray As Variant Dim row As Long, col As Long Dim maxRows As Long, maxCols As Long ' 2차원 배열 초기화 (예: Range에서 가져온 데이터) profileArray = Range("profile_list").Value ' 배열 크기 확인 maxRows = UBound(profileArray, 1) ' 행 개수 maxCols = UBound(profileArray, 2) ' 열 개수 ' 배..