1 of 35

Dear Teachers,

These slides have been prepared based on the SCERT syllabus to support you in teaching Plus One and Plus Two Accountancy and Computerised Accounting.

Please review and verify the content before using it in your classrooms. If you find any errors or have feedback, please let me know.

Mujeeb Rahiman C

HSST Commerce

GHSS Pattikkad

Malappuram Dt.

✉️ mujeebchemmala@gmail.com

9995983075 �

2 of 35

LibreOffice Calc

Chapter- 2

Logical Functions

3 of 35

Logical Functions

Logical functions are used to compare two values or statements. All logical functions return either logical True or logical False when their functions are evaluated. The commonly used logical functions are :

  1. IF
  2. AND
  3. OR

4 of 35

IF

Example : =IF(C3>=24,“Passed”,“Failed”)

Syntax : =IF(Test, Then_Value, Otherwise_ValSue

Condition :

Pass Mark : 24

Passed

Passed

Passed

Failed

5 of 35

IF

When we need to test a condition, whether it is true or false, then usually IF function is used. This function will analyse a logical test and give you the result.

=IF(Test, Then_Value, Otherwise_Value)

6 of 35

Nested IF

Grade

Mark

A+

90-100

A

80-89

B+

70-79

B

60-69

C+

50-59

C

40-49

D+

30-39

D

Below 30

=IF(C3>=90,“A+”,IF(C3>=80,“A”,IF(C3>=70,”B+”..........)))

Example :

Conditions :

A+

B+

D+

7 of 35

Nested IF

IF function tests single criteria. If your data require more logical tests with multiple conditions, you can use several IF conditions in one formula. These multiple IF statements are called Nested IF.

Syntax :

=IF(Test1,Then_Value1,IF(Test2,Then_Value2,IF(......,......)))

If the first condition test is FALSE then

the application will test the next condition

8 of 35

Logical Functions

IF

=IF(Test, Then_Value, Otherwise_Value)

=IF(Test1,Then_Value1,IF(Test2,Then_Value2,IF(...,..)))

Nested IF

9 of 35

AND

Example :

=AND(B3>40,C3>50)

TRUE

FALSE

FALSE

Syntax : =AND(Logical_Value1,Logical_Value2,Logical_Value3,......)

The students who got marks

AC > 40 AND BS > 50 are selected, others are rejected

Conditions :

FALSE

10 of 35

AND

AND function is used to determine whether the output will be TRUE or FALSE. It Returns TRUE if all the arguments evaluated are TRUE. If any argument is FALSE, this function returns FALSE value.

AND function in combination with other functions provides enormous possibilities to a worksheet.

Syntax : =AND(Logical_Value1,Logical_Value2,Logical_Value3,......)

11 of 35

OR

Syntax : =OR(Logical_Value1,Logical_Value2,Logical_Value3,........)

Example: =OR(B3>40,C3>50)

TRUE

TRUE

FALSE

TRUE

The students who got marks

AC > 40 OR BS > 50 are selected, others are rejected

Conditions :

12 of 35

OR

OR function is used to compare two statements. OR will return TRUE if at least one argument is correct and return FALSE if all the arguments are wrong.

Syntax : =OR(Logical_Value1,Logical_Value2,Logical_Value3,........)

13 of 35

The difference between AND and OR

AND will return TRUE if all the arguments are correct

OR will return TRUE if at least one argument is correct

14 of 35

Logical Functions

=AND(Logical_Value1,Logical_Value2,Logical_Value3,.....)

AND

OR

=OR(Logical_Value1,Logical_Value2,Logical_Value3,........)

15 of 35

MUJEEB RAHIMAN C

HSST COMMERCE

GHSS PATTIKKAD

MALAPPURAM DT

16 of 35

LibreOffice Calc

Chapter- 2

Mathematical Functions

17 of 35

Mathematical Functions

The following mathematical functions are mainly used in business applications.

SUM

SUMIF

ROUND

ROUNDUP

ROUNDDOWN

18 of 35

SUM

This function is used to get the sum of the given numbers, cells or range of cells

Syntax : =SUM(Number1,Number2,Number3,.........)

=SUM(Cell1,Cell2,Cell3,.........)

=SUM(Range1,Range2,Range3,.........)

Example : =SUM(25,35,45)

=SUM(A1,A2,A3,B1,B2,B3)

=SUM(A1:A3)

=SUM(A1:A3,B1:B3)

19 of 35

SUMIF

This function is little different from SUM function. SUMIF function will add only those figures from a particular range which satisfies the condition.

Syntax : =SUMIF(Range,”Criteria”,Sum_Range)

Where

Range means the range of cells to which the criteria are to be applied

Criteria are the condition to be fulfilled for totalling cells

Sum_range (optional)is the range from which values are summed

20 of 35

ROUND

Often while carrying out divisions, calculating interest etc. the end result may be in fraction (eg. 25431.2572). Calc provides ROUND function to round-off a number to a certain number of decimal places

Syntax : =ROUND(Number,Count)

Where

Number - It is the number to round to specified number of digits

Count – It specifies the number of digits to round the number

21 of 35

ROUND

Syntax : =ROUND(Number,Count)

Formula

Result

=ROUND(25431.2572,2)

25431.26

=ROUND(25431.2572,1)

25431.3

=ROUND(25431.2572,0)

25431

=ROUND(25431.2572,-1)

25430

=ROUND(25431.2572,-2)

25400

22 of 35

ROUNDUP

This function is similar to ROUND function. This function rounds a number up away from zero, without considering the value next to the rounding digit.

Syntax : =ROUNDUP(Number,Count)

Where

Number - It is the number to round to specified number of digits

Count – It specifies the number of digits to round the number

23 of 35

ROUNDUP

Syntax : =ROUNDUP(Number,Count)

Formula

Result

=ROUNDUP(45321.7354,2)

45321.74

=ROUNDUP(45321.7354,1)

45321.8

=ROUNDUP(45321.7354,0)

45322

=ROUNDUP(45321.7354,-1)

45330

=ROUNDUP(45321.7354,-2)

45400

24 of 35

ROUNDDOWN

This function does the opposite of ROUNDUP. It rounds a number down towards zero.

Syntax : =ROUNDDOWN(Number,Count)

Where

Number - It is the number to round to specified number of digits

Count – It specifies the number of digits to round the number

25 of 35

ROUNDDOWN

Syntax : =ROUNDDOWN(Number,Count)

Formula

Result

=ROUNDDOWN(45321.7354,2)

45321.73

=ROUNDDOWN(45321.7654,1)

45321.7

=ROUNDDOWN(45321.7354,0)

45321

=ROUNDDOWN(45329.7354,-1)

45320

=ROUNDDOWN(45399.7354,-2)

45300

26 of 35

Mathematical Functions

=SUM(Range)

=SUMIF(Range,”Criteria”,Sum_Range)

=ROUND(Number,Count)

=ROUNDUP(Number,Count)

=ROUNDDOWN(Number,Count)

27 of 35

MUJEEB RAHIMAN C

HSST COMMERCE

GHSS PATTIKKAD

MALAPPURAM DT

28 of 35

LibreOffice Calc

Chapter- 2

Text Functions

29 of 35

Text Functions

Text functions are used for creating or modifying the data entered in cells to a required text format to same or another cell. Commonly used text functions are.

TEXT

CONCATENATE

30 of 35

TEXT

TEXT function is useful in situations where we want to display numbers in a more readable format, or want to combine numbers with text or symbols.

Syntax : =TEXT(Number,Format)

Where

Number - numerical value to be converted

Format – is the text, which defines the format

31 of 35

TEXT

Syntax : =TEXT(Number,Format)

Values in A1

Text Function

Result

123.45

=TEXT(A1,”₹0.00”)

₹123.45

223.456

=TEXT(A1,”$#.##”)

$223.46

01/05/20

=TEXT(A1,”dd/mm/yyyy”)

01/05/2020

9995983075

=TEXT(A1,”00000 00000”)

99959 83075

32 of 35

CONCATENATE

This function combines several text strings of different cells into one cell. The text items can be text strings, numbers or single cell references. Space between strings are given in inverted comma (“ ”).

Syntax : =CONCATENATE(Text1,Text2,Text3,.......)

33 of 35

CONCATENATE

Syntax : =CONCATENATE(Text1,Text2,Text3,.......)

34 of 35

Text Functions

=TEXT(Number,Format)

=CONCATENATE(Text1,Text2,Text3,.......)

35 of 35

MUJEEB RAHIMAN C

HSST COMMERCE

GHSS PATTIKKAD

MALAPPURAM DT