Logical Function
Logical function काफी useful function होता है किसी condition को लगाकर कोई value search करनी हो तो वहा logical function use किए जाते है
Logical function में user अपनी जरुरत के अनुसार condition लगा सकता है
* Logical functionमें आने वाले opreators
Operator |
meaning |
> |
Greater than |
< |
Less than |
= |
Equal to |
>= |
Greater than or Less than |
<= |
Less than or Equal to |
<> |
Not equal to |
1 If Funcction - Excel में सबसे ज्यादा use आनेवाला function if होता है इसके द्वारा जो भी condition दी जाती है
उसी के अनुसार Result Display होता है
A | B | C | D | E |
1 | Product | HSN/ SAC code | Sale | Using Formula |
2 | Pen | 62114210 | 60 | =If (D2<50,"less","grater") |
यदि D2 वाली Value 50से कम है तो less result आए यदि नहीं है तो Greater आए
2 And function- जब एक ही समय में एक से अधिक Condition लगाने की आवश्यकता होती है And function true या false में result देता है यदि सभी condition सही है तो true result आता है अगर एक भी condition गलत है तो False Display होता है
A | B | C | D | E | F |
S. no | Student | Eng | Hindi | Maths | Science |
1 | Ajay | 30 | 36 | 89 | 30 |
2 | Mohan | 20 | 10 | 15 | 22 |
= and (C2>= 30, D2>=30,E2>=30, F2>=30) True
3 Or function - And Fuction में सभी Condition का true होना जरुरी है जबकि or funtion में सभी Condition में से कोई एक भी Condition true होती है तो हमे Result true होता है
= Or (C3>=30,D3>=30, E3>=30,F3>=30)
इस Range में एक भी Condition 30 से ऊपर नहीं है इसलिए False यदि एक में भी यदि 30 होता तो Ture होता है
4 Not function -Excel में Not function trueको false में व falseको true में बदलता है जब Condition true होती है तो False Result देगा और Condition False होती है तो Result true देता है
* What is logical function true/ false
जब भी हमे दो Condition दी जाती है और दोनों Condition यदि Logocally सही है तो true Return होता है नहीं तोFalse return होता है
Not (A2="Purple")
= if (Not (Or (A2="red",A2="yellow")), "No Required", Required")
Cell References in Formulas
Cell References तीन Type की होती है
1.Relative :- जब Cell address को एक cell से दूसरे में copy करते हैं तो उसका row & column का References change हो जाता है
Eg. – D2
2.Absolute :- जब Cell Address को एक Cell से दूसरे Cell में Copy करते हैं तो उस Cell address का Row & Column का References Change नहीं होते हैं
eg. - $ D $ 2
Sales Tax=(C2*D2)*$C$6
Total =E2+F2
3.Mixed :- जब किसी Cell address में Row या Column के address में से एक Absolute और दूसरा relative हो तो वह Cell address mixed reference है
* formula copy करते हैं तो Column fix होता है Row बदलता है |
* formula copy करते हैं तो Row fix होता है Column बदलता है |
eg. - $ D 2 या D $ 2
Eg:-Mixed cell Reference :-
Formula in cell B2:-
=$A2*B$1
Thanks to ChatGPT
Thanks to Gemini Google