×
Determining Result:
  • Once we are done with the calculation of percentage, depending on this percentage we can determine the result whether it is "First Class" or "Second Class" or "Pass Class" or "Fail     
  • In spreadsheet we can do this kind of logical checking using one of the logical operators "IF".
परिणाम का निर्धारण:
  • प्रतिशत का आकलन हो जाने के बाद , इसके आधार पर हम परिणाम, संभवत:, प्रथम श्रेणी या द्वितीय श्रेणी या उत्तीर्ण या अनुत्तीर्ण का निर्धारण कर सकते हैं।

  • स्प्रेडशीट में हम इस तरह के तार्किक मिलान एक तार्किक संचालक/ आपरेटर “IF” का प्रयोग करते हुए कर सकते हैं।



Information on IF operator:

संचालक/ आपरेटर “IF” के बारे में सूचना:

  • The operator IF works same as we generally use " if " in regular conversation.
  • संचालक/ आपरेटर “IF” ऐसे ही काम करता है जैसे की हम बोलचाल में आमतौर से “यदि/if” का प्रयोग करते हैं।
             For example:

                उदाहरण के लिए :

                 "If Rohan has Rs. 10  then he will get an orange otherwise he will get a banana."
                 
यदि रोहण के पास १० रुपये हैं तो उसे नारंगी मिलेगी अन्यथा उसे केला मिलेगा ।”

                So in this example first we have to check whether Rohan is having Rs. 10 or not.
                 If yes then he will get an orange otherwise he will get a banana. 

                    इस उदाहरण में हमें यह जाँचना है कि रोहण के पास १० रूपये हैं या नहीं । 
                    यदि हैं तो उसे नारंगी मिलेगी अन्यथा उसे केला मिलेगा ।

  • To use IF operator we should have three values, first "test value" second "then value" and third  "otherwise value."
  • We can use one IF operator inside other IF operator also this is called as nested usage of operator. There is no restriction on nested usage of IF operator.
  • संचालक/ आपरेटर “IF” का प्रयोग करते हुए हमारे पास तीन मूल्याँक होने चाहिए, पहला “test value.” दूसरा “Then value”.और तीसरा “otherwise value”

  • हम संचालक/ आपरेटर “IF” का प्रयोग दूसरे संचालक/ आपरेटर “IF”के भीतर /अन्तर्गत भी कर सकते हैं जो की संचालक/ आपरेटर का नेस्टेड प्रयोग कहलाता है। संचालक/ आपरेटर के नेस्टेड प्रयोग पर कोई रोक या सीमा नहीं है।


How to use "IF" in spreadsheet to determine the reult:

  • Firstly we will go to cell "L6" where we want our Result to be displayed
  • Now write the formula as
             =IF(K6>=60, "First Class", IF(K6>=45, "Second Class", IF(K6>=35, "Pass Class", "Fail"))).
  • Press "Enter" button.
            Here it will test vale given in cell K6 (percentage) for the given conditions.
            Depending on the test it will give "then value" or "otherwise value"
  • We should get the result as "First Calss".

स्प्रेडशीट में परिणाम का निर्धारण के लिये “IF” का प्रयोग कैसे करें :

  • सबसे पहले हम कोष्ठ/सेल “K6” में जाएँगे जहाँ हम परिणाम को दिखाना चाहेंगे

  • अब हम ऐसे फ़ार्मूला लिखेंगे
     =IF(K6>=60, "First Class", IF(K6>=45, "Second Class", IF(K6>=35, "Pass Class", "Fail"))).

  • ऐंटर” बटन को दबाएँ ।            
    दिये हुए परिस्थितियों में यह कोष्ठक/सेल K6 (प्रतिशत) को परीक्षित करेगा । परीक्षण पर निर्भर करते हुए यह “Then value”या “otherwise value” देगा ।

  • हमें “प्रथम श्रेणी” परिणाम मिलना चाहिए ।

 



 
[Contributed by administrator on 15. März 2018 17:22:59]

×