답변:
나는 그것을하는 간단한 AppleScript를 썼습니다.
tell application "Numbers"
activate
tell the front document
tell the first sheet
set original_range to selection range of first table
set orignal_table to first table
set number_of_columns to column count of orignal_table
set number_of_rows to row count of orignal_table
set trasposed_table to make new table with properties {row count:number_of_columns, column count:number_of_rows}
repeat with i from 1 to number_of_columns
repeat with j from 1 to number_of_rows
tell orignal_table
set original_value to the value of cell i of row j
end tell
tell trasposed_table
set the value of cell j of row i to original_value
end tell
end repeat
end repeat
end tell
end tell
end tell
여기에서 자세한 내용을 확인할 수 있습니다.
최신 버전의 Numbers를 사용하는 사용자는 이 답변에서 StackExchange에 표시된 것처럼 "테이블"메뉴에서 "행 및 열 전치"옵션을 사용할 수 있습니다 . 아래 이미지는 쉽게 참조 할 수 있도록 그 대답에서 뻔뻔스럽게 '차용'했습니다.
value
의미를 취 한다는 것입니다. 전치하는 셀에 공식이 있으면 출력 만 바뀝니다. 공식은 없습니다.