📘 Chapter 2
Enter and Edit the text in Spreadsheet
Topic 2.8: Use of functions to do calculations
गणना करने हेतु फ़ंक्शन्स का उपयोग

Spreadsheet में Functions (फ़ंक्शन) का उपयोग गणना को तेज़, आसान और सही बनाने के लिए किया जाता है।
लंबे Formulas manually टाइप करने की बजाय हम Functions का प्रयोग कर सकते हैं।


1. SUM (जोड़) Function

  • किसी range में सभी संख्याओं का जोड़ करता है।

  • Example: अगर A1=10, A2=20, A3=30

    • Formula → =SUM(A1:A3)

    • Result → 60

2. AVERAGE (औसत) Function

  • किसी range का mean (औसत) निकालता है।

  • Example: B1=50, B2=60, B3=70

    • Formula → =AVERAGE(B1:B3)

    • Result → 60

3. MAX (सबसे बड़ा मान) Function

  • किसी range में सबसे बड़ा मान खोजता है।

  • Example: C1=15, C2=25, C3=10

    • Formula → =MAX(C1:C3)

    • Result → 25

4. MIN (सबसे छोटा मान) Function

  • किसी range में सबसे छोटा मान खोजता है।

  • Example: D1=8, D2=12, D3=5

    • Formula → =MIN(D1:D3)

    • Result → 5

5. COUNT (गणना) Function

  • किसी range में कितनी numeric entries (संख्याएँ) हैं, गिनता है।

  • Example: E1=5, E2=Text, E3=10

    • Formula → =COUNT(E1:E3)

    • Result → 2


फ़ंक्शन्स के लाभ (Advantages):

  • Automatic Calculations: अगर Cell का मान बदले, तो Result अपने आप बदल जाएगा।

  • Time-Saving: लंबे Formulas manually टाइप करने की जरूरत नहीं।

  • Error-Free: Calculation में गलती की संभावना कम।

  • Easy to Copy: Functions को अन्य Cells में copy किया जा सकता है, relative references अपने आप adjust हो जाते हैं।

Posted by: Er. Manoj Kumar
Post Date: 17-09-2025 04:46 PM