iWork Numbers에서 표의 열과 행을 바꾸는 방법 (조옮김)?


8

테이블을 바꾸고 싶습니다 (행을 열로 교환하거나 그 반대로). iWork Numbers에서이를 수행하는 방법.

답변:


4

나는 그것을하는 간단한 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

여기에서 자세한 내용을 확인할 수 있습니다.


2
이 공식을 언급하는 것은 셀의 value의미를 취 한다는 것입니다. 전치하는 셀에 공식이 있으면 출력 만 바뀝니다. 공식은 없습니다.
Nick Q.

당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.