LibreOffice 24.8 Help
This category contains the Logical functions.
Zero (0) is equivalent to FALSE and all other numbers are equivalent to TRUE.
Empty cells and text in cells are ignored.
A #VALUE error is raised if all arguments are ignored.
A #VALUE error is raised if one argument is direct text (not text in a cell).
Errors as argument lead to an error.
যদি সব আর্গুমেন্ট TRUE হয়, TRUE প্রদান করে। যদি কোনো একটি উপাদান FALSE হয়, এই ফাংশনটি FALSE মান প্রদান করে।
আর্গুমেন্টগুলো নিজেই হয় লজিক্যাল এক্সপ্রেশন (TRUE, 1<5, 2+3=7, B8<10), যা লজিক্যাল মান প্রদান করে, বা অ্যারে (A1:C3), যাতে লজিক্যাল মান রয়েছে।
AND(Logical 1 [; Logical 2 [; … [; Logical 255]]])
১২<১৩; ১৪>১২, এবং ৭<৬ ভুক্তির লজিক্যাল মান পরীক্ষা করা হবে:
=AND(12<13;14>12;7<6) FALSE প্রদান করে।
=AND(FALSE();TRUE()) returns FALSE.
লজিক্যাল মান FALSE প্রদান করে। FALSE() ফাংশনের কোনো আর্গুমেন্ট প্রয়োজন নেই, এবং সবসময় লজিক্যাল মান FALSE প্রদান করে।
FALSE()
=FALSE() FALSE প্রদান করে
=NOT(FALSE()) TRUE প্রদান করে
একটি লজিক্যাল পরীক্ষা সম্পন্ন করার জন্য সুনির্দিষ্ট করা হয়।
IF(Test [; [ThenValue] [; [OtherwiseValue]]])
পরীক্ষণ যেকোনো মান অথবা এক্সপ্রেশন যা TRUE অথবা FALSE হতে পারে।
ThenValue (ঐচ্ছিক) হলো এমন একটি মান যা লজিক্যাল পরীক্ষণ TRUE হলে প্রদান করে থাকে।
OtherwiseValue (ঐচ্ছিক) হলো এমন একটি মান যা লজিক্যাল পরীক্ষণ FALSE হলে প্রদান করে থাকে।
In the LibreOffice Calc functions, parameters marked as "optional" can be left out only when no parameter follows. For example, in a function with four parameters, where the last two parameters are marked as "optional", you can leave out parameter 4 or parameters 3 and 4, but you cannot leave out parameter 3 alone.
=IF(A1>5;100;"too small") If the value in A1 is greater than 5, the value 100 is returned; otherwise, the text too small is returned.
=IF(A1>5;;"too small") If the value in A1 is greater than 5, the value 0 is returned because empty parameters are considered to be 0; otherwise, the text too small is returned.
=IF(A1>5;100;) If the value in A1 is less than 5, the value 0 is returned because the empty OtherwiseValue is interpreted as 0; otherwise 100 is returned.
একটি লজিক্যাল মানের সম্পূরক (বিপরীত) করা হয়।
NOT(LogicalValue)
LogicalValue হলো সম্পূরক মান।
=NOT(A). If A=TRUE then NOT(A) will evaluate FALSE.
যদি কমপক্ষে একটি আর্গুমেন্ট TRUE হয়, TRUE প্রদান করে। যদি সকল আর্গুমেন্টের লজিক্যাল মান FALSE হয়, ফাংশনটি FALSE মান প্রদান করে।
আর্গুমেন্টগুলো নিজেই হয় লজিক্যাল এক্সপ্রেশন (TRUE, 1<5, 2+3=7, B8<10), যা লজিক্যাল মান প্রদান করে, বা অ্যারে (A1:C3), যাতে লজিক্যাল মান রয়েছে।
OR(Logical 1 [; Logical 2 [; … [; Logical 255]]])
১২<১১; ১৩>২২, এবং ৪৫=৪৫ ভুক্সিসমূহের লজিক্যাল মান পরীক্ষা করা হবে।
=OR(12<11;13>22;45=45) TRUE প্রদান করে।
=OR(FALSE();TRUE()) returns TRUE.
লজিক্যাল মান TRUE হিসেবে নির্ধারণ করা হয়েছে। TRUE() ফাংশনের কোনো আর্গুমেন্ট প্রয়োজন নেই, এবং সর্বদা লজিক্যাল মান TRUE প্রদান করে।
TRUE()
যদি A=TRUE এবং B=FALSE হয়, নিম্নের উদাহরণ উপস্থিত হয়:
=AND(A;B) FALSE প্রদান করে
=OR(A;B) TRUE প্রদান করে
=NOT(AND(A;B)) TRUE প্রদান করে
Returns true if an odd number of arguments evaluates to TRUE.
আর্গুমেন্টগুলো নিজেই হয় লজিক্যাল এক্সপ্রেশন (TRUE, 1<5, 2+3=7, B8<10), যা লজিক্যাল মান প্রদান করে, বা অ্যারে (A1:C3), যাতে লজিক্যাল মান রয়েছে।
XOR(Logical 1 [; Logical 2 [; … [; Logical 255]]])
=XOR(TRUE();TRUE()) returns FALSE
=XOR(TRUE();TRUE();TRUE()) returns TRUE
=XOR(FALSE();TRUE()) returns TRUE