សញ្ញា​ប្រមាណ​វិធី​ក្នុ LibreOffice Calc

អ្នក​អាច​ប្រើ​សញ្ញា​ប្រមាណ​វិធី​ខាង​ក្រោម​ក្នុង LibreOffice Calc ៖

សញ្ញា​ប្រមាណ​វិធី​នព្វន្ត

សញ្ញា​ប្រមាណ​វិធី​ទាំង​នេះ​ត្រឡប់​លទ្ធផល​​ជា​លេខ ។

សញ្ញា​​ប្រមាណ​វិធី

ឈ្មោះ

Example

+ (បូក)

វិធី​បូក

1+1

- (ដក)

វិធី​ដក

2-1

- (ដក)

អវិជ្ជមាន​កម្ម

-5

* (ផ្កាយ)

វិធី​គុណ

2*2

/ (ចែក)

វិធី​ចែក

9/3

% (ភាគរយ)

ភាគរយ

15%

^ (និទស្សន្ត)

និទស្សន្តកម្ម

3^2


note

Prefix "-" (negation) has a higher precedence than "^" (exponentiation). For example -3^2 equals 9, which is the square of a negative number.


សញ្ញា​ប្រមាណ​វិធី​ប្រៀបធៀប

សញ្ញា​ប្រមាណ​វិធី​ទាំង​នេះ​ត្រឡប់​ទាំង ពិត ឬ​មិន​ពិត ។

សញ្ញា​​ប្រមាណ​វិធី

ឈ្មោះ

Example

= (សញ្ញា​ស្មើ)

ស្មើ

A1=B1

> (ធំ​ជាង)

ធំ​ជាង

A1>B1

< (តូច​ជាង)

តូច​ជាង

A1<B1

>= (ធំជាង ឬ​ស្មើ)

ធំជាង ឬ​ស្មើ

A1>=B1

<= (តូច​ជាង ឬ​ស្មើ)

តូច​ជាង ឬ​ ស្មើ

A1<=B1

<> (មិន​ស្មើ)

មិន​ស្មើ

A1<>B1


សញ្ញា​ប្រមាណ​វិធី​អត្ថបទ

សញ្ញា​ប្រមាណ​វិធី​ផ្សំ​អត្ថបទ​ដាច់​ពី​គ្នា ទៅ​ជា​អត្ថបទ​មួយ ។

សញ្ញា​​ប្រមាណ​វិធី

ឈ្មោះ

Example

& (និង)

ការ​ដាក់​អត្ថបទ​​បន្ត​គ្នា AND

"Sun" & "day" គឺ "Sunday"


សញ្ញា​ប្រមាណវិធី​សេចក្តី​យោង

ប្រតិបត្តិការ​ទាំងនេះ​ត្រឡប់​ជួរ​ក្រឡា​សូន្យ ក្រឡា​មួយ ឬ​ច្រើន ។

ជួរ​មាន​អាទិភាព​ខ្ពស់​បំផុត បន្ទាប់​មក​ប្រសព្វ និង​ព្យាយាម​ប្រជុំ​ចុងក្រោយ ។

សញ្ញា​​ប្រមាណ​វិធី

ឈ្មោះ

Example

: (ចុច​ពីរ)

ជួរ

A1:C108, A:D or 3:13

! (ឧទាន)

ការ​ប្រសព្វ

SUM(A1:B6!B5:C12)

គណនា​ផល​បូក​នៃ​ក្រឡា​ទាំងអស់​ក្នុង​ចំណុច​ប្រសព្វ ក្នុង​ឧទាហរណ៍​នេះ លទ្ធផល​បាន​មក​ពី​ផលបូក​នៃ​ក្រឡា ​B5 និង B6 ។

~ (Tilde)

កាត់ឲ្យ​ខ្លី ឬ​ប្រជុំ

Takes two references and returns a reference list, which is a concatenation of the left reference followed by the right reference. Double entries are referenced twice.

=COUNT(A1:B2~B2:C3) counts values of A1:B2 and B2:C3. Note that the cell B2 is counted twice.

=INDEX(A1:B2~C1:D2;2;1;2) selects cell C2, that is, the first cell of the second row, first column, of the second range (C1:D2) of the range list.


note

A reference list is not allowed inside an array expression.