What are the 10 basic Excel formulas
नक्कीच, येथे उदाहरणांसह 10 मूलभूत एक्सेल सूत्रे आहेत:
- SUM: हे सूत्र संख्यांची श्रेणी जोडते. उदाहरणार्थ, =SUM(A1:A5) सेल A1 ते A5 मधील मूल्ये जोडते.
- सरासरी: हे सूत्र संख्यांच्या श्रेणीची सरासरी काढते. उदाहरणार्थ, =AVERAGE(A1:A5) सेल A1 ते A5 मधील मूल्यांची सरासरी काढते.
- COUNT: हे सूत्र संख्या असलेल्या श्रेणीतील सेलची संख्या मोजते. उदाहरणार्थ, =COUNT(A1:A5) सेल A1 ते A5 मधील सेलची संख्या मोजते ज्यामध्ये संख्या असते.
- MIN: हे सूत्र संख्यांच्या श्रेणीमध्ये किमान मूल्य शोधते. उदाहरणार्थ, =MIN(A1:A5) सेल A1 ते A5 मध्ये सर्वात लहान मूल्य शोधते.
- MAX: हे सूत्र संख्यांच्या श्रेणीमध्ये कमाल मूल्य शोधते. उदाहरणार्थ, =MAX(A1:A5) सेल A1 ते A5 मध्ये सर्वात मोठे मूल्य शोधते.
- IF: हा फॉर्म्युला तुम्हाला अट निर्दिष्ट करण्यास आणि अट सत्य असल्यास गणना करण्यास अनुमती देते. उदाहरणार्थ, =IF(A1>0,"Positive","negative") सेल A1 मधील मूल्य शून्यापेक्षा जास्त असल्यास "Positive" आणि शून्यापेक्षा कमी किंवा समान असल्यास "ऋण" हा शब्द देईल.
- COUNTIF: हे सूत्र विशिष्ट स्थिती पूर्ण करणाऱ्या श्रेणीतील पेशींची संख्या मोजते. उदाहरणार्थ, =COUNTIF(A1:A5,">=50") सेल A1 ते A5 मधील सेलची संख्या मोजते जी 50 पेक्षा जास्त किंवा बरोबर आहेत.
- SUMIF: हे सूत्र विशिष्ट अटी पूर्ण करणाऱ्या श्रेणीतील मूल्ये जोडते. उदाहरणार्थ, =SUMIF(A1:A5,">=50") सेल A1 ते A5 मधील मूल्ये जोडते जी 50 पेक्षा मोठी किंवा समान आहेत.
- VLOOKUP: हे सूत्र टेबलमधील मूल्य पाहते आणि त्याच पंक्तीमध्ये संबंधित मूल्य मिळवते. उदाहरणार्थ, =VLOOKUP(A1,B1:C5,2,FALSE) सेल B1 ते C5 मधील टेबलच्या पहिल्या स्तंभातील सेल A1 मधील मूल्य पाहते आणि त्याच पंक्तीच्या दुसऱ्या स्तंभातील मूल्य मिळवते.
- CONCATENATE: हे सूत्र दोन किंवा अधिक सेलमधील मजकूर एका सेलमध्ये एकत्र करते. उदाहरणार्थ, =CONCATENATE(A1," ",B1) सेल A1 आणि B1 मधील मजकूर मधल्या जागेसह एकत्र करते. A1 मध्ये "Hello" आणि B1 मध्ये "World" असल्यास, परिणाम "Hello World" असेल.
Sure, here are 10 basic Excel formulas with examples:
- SUM: This formula adds up a range of numbers. For example, =SUM(A1:A5) adds the values in cells A1 through A5.
- AVERAGE: This formula calculates the average of a range of numbers. For example, =AVERAGE(A1:A5) calculates the average of the values in cells A1 through A5.
- COUNT: This formula counts the number of cells in a range that contain numbers. For example, =COUNT(A1:A5) counts the number of cells in cells A1 through A5 that contain numbers.
- MIN: This formula finds the minimum value in a range of numbers. For example, =MIN(A1:A5) finds the smallest value in cells A1 through A5.
- MAX: This formula finds the maximum value in a range of numbers. For example, =MAX(A1:A5) finds the largest value in cells A1 through A5.
- IF: This formula allows you to specify a condition and perform a calculation if the condition is true. For example, =IF(A1>0,"Positive","Negative") will return the word "Positive" if the value in cell A1 is greater than zero, and "Negative" if it is less than or equal to zero.
- COUNTIF: This formula counts the number of cells in a range that meet a specific condition. For example, =COUNTIF(A1:A5,">=50") counts the number of cells in cells A1 through A5 that are greater than or equal to 50.
- SUMIF: This formula adds up the values in a range that meet a specific condition. For example, =SUMIF(A1:A5,">=50") adds up the values in cells A1 through A5 that are greater than or equal to 50.
- VLOOKUP: This formula looks up a value in a table and returns a corresponding value in the same row. For example, =VLOOKUP(A1,B1:C5,2,FALSE) looks up the value in cell A1 in the first column of the table in cells B1 through C5, and returns the value in the second column of the same row.
- CONCATENATE: This formula combines text from two or more cells into a single cell. For example, =CONCATENATE(A1," ",B1) combines the text in cells A1 and B1 with a space in between. If A1 contains "Hello" and B1 contains "World", the result would be "Hello World".
Post a Comment