IWork नंबरों में एक तालिका (Transpose) में एक कॉलम और रो को कैसे इंटरचेंज करें?


8

मैं एक तालिका (स्तंभों के लिए पंक्तियों को बदलना और इसके विपरीत) को स्थानांतरित करना चाहता हूं। कैसे करना है कि iWork नंबरों में।

जवाबों:


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अर्थ को ले जाता है, यदि आपके पास उन कोशिकाओं में सूत्र होते हैं जिन्हें आप स्थानांतरित कर रहे हैं, तो केवल उनका आउटपुट ही ट्रांसपोज़ किया जाएगा। सूत्र नहीं होंगे।
निक Q.

3

संख्याओं के नवीनतम संस्करण का उपयोग करने वाले "टेबल" मेनू के तहत " ट्रांज़ोज़ रो और कॉलम" विकल्प का उपयोग कर सकते हैं, जैसा कि स्टैकएक्सचेंज पर इस उत्तर में देखा गया है । आसान संदर्भ के लिए नीचे दिए गए चित्र भी बेशर्मी से उस उत्तर से 'उधार' लिए गए हैं।

हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.