0% found this document useful (0 votes)
88 views7 pages

Excel Rounding and Truncation Functions

The document provides examples of various Excel functions including mathematical functions like ROUND, INT, TRUNC; logical functions like IF; text functions like UPPER, LOWER; statistical functions like AVERAGE, MIN, MAX; and date/time functions like NOW, TODAY. Formulas are demonstrated to round numbers, find the square root, concatenate text, count cells, and perform other calculations.

Uploaded by

saadRaul
Copyright
© Attribution Non-Commercial (BY-NC)
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as XLS, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
88 views7 pages

Excel Rounding and Truncation Functions

The document provides examples of various Excel functions including mathematical functions like ROUND, INT, TRUNC; logical functions like IF; text functions like UPPER, LOWER; statistical functions like AVERAGE, MIN, MAX; and date/time functions like NOW, TODAY. Formulas are demonstrated to round numbers, find the square root, concatenate text, count cells, and perform other calculations.

Uploaded by

saadRaul
Copyright
© Attribution Non-Commercial (BY-NC)
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as XLS, PDF, TXT or read online on Scribd
You are on page 1/ 7

ROUND FUNCTION ROUNDING WITH EVEN & ODD

=ROUND(123.4567,-2) 100 =EVEN(23.4)

=ROUND(123.4567,-1) 120 =EVEN(2)

=ROUND(123.467,0) 123 =EVEN(3)

=ROUND(123.4567,1) 123.5 =ODD(23.4)

=ROUND(123.4567,2) 123.46 =ODD(3)

=ROUND(123.4567,3) 123.457 =ODD(4)

INT & TRUNC FUNCTIONS PRODUCT FUNCTION

=INT(100.01) 100 =PRODUCT(1,2,3,4)

=INT(100.99999999) 100 MOD FUNCTION

=TRUNC(12.789) 12 =MOD(9,5)

=TRUNC(12.789,1) 12.7 SQUARE ROOT FUNCTION

=SQRT(36)

SUMIF FUNCTIONS IF FUNCTION

Sales Person Area Amount Student Name


Ahmed East $100 Ahmed
Kashif East $150 Kashif
Ali East $100 Ali
Ahmed West $150 Tanveer
Kashif West $100
Ali East $150
Ali West $100
Ahmed East $100
Kashif East $150
Sales Person Wise Sales Count If

Sales Person Amount Name


Kashif 350 Mohammad Faisal
Ahmed 400 Ali Ahmed
Ali 350 Kashif Shah
Ahmed Munaf
Arif Mahmood
Abid Hussain
Obaid Ullah

No. of Managers
No. of Salespersons

A 10
B 20
C 30 A 10
WITH EVEN & ODD COMBINATION FUNCTION

24 =COMBIN(4,2) 6

2 LOGARITMIC FUNCTIONS

4 =LOG(5, 2) 2.32192809489

25 =LN(2) 0.69314718056

3 =EXP(1) 2.71828182846

5
TRIGNOMATRIC FUNCTIONS

CT FUNCTION PI FUNCTION

24 =PI() 3.14159265359

FUNCTION RADIAN & DEGREE FUNCTIONS

4 =RADIANS(180) 3.14159265359

ROOT FUNCTION =DEGREES(PI()) 180

6 SIN, COS & TAN

IF FUNCTION =SIN(90*PI()/180) 1

Marks Grade =COS(90*PI()/180) 0.70710678119


70 PASS
75 PASS =TAN(45*PI()/180) 1
60 PASS
35 FAIL
Count If

Designation
Manager
Salesperson
Manager
Salesperson
Manager
Salesperson
Salesperson

3
4
TEXT FUNCTIONS

=TEXT(98/4,"0.00") 24.50
=LEN("This is a text") 14

=CODE("A") 65

=CHAR(65) A

=UPPER("this is text") THIS IS TEXT

=LOWER("THIS IS TEXT") this is text

=PROPER("THIS IS TEXT") This Is Text

=REPT("*",5) *****

=MID("Pakistan",4,3) ist

=REPLACE("Millie Potter Cychic", 1, 6, "Mildred") Mildred Potter Cychic

=SUBSTITUTE("through the loop","h","l") tlrougl tle loop

=SUBSTITUTE("through the loop","h","l",3) through tle loop


d Potter Cychic

tle loop

h tle loop
DATE & TIME FUNCTIONS
=TODAY() 12/8/2021

=NOW() 12/8/2021 6:35

=WEEKDAY("7/10/06") 1

=DATEVALUE("1/1/1900") 2

=TIMEVALUE("12:00 AM") 0

=DAYS360("7/10/06","7/15/06") 5

STATISICAL FUNCTIONS

=AVERAGE(4,4,4,4) 4

=MIN(1, 23, 45) 1


DATA
=MAX(1, 23, 45) 45 1
2
=VAR(1,2,3,4,5) 2.5 3

=MEDIAN(1,2,4,3,6) 3 4
5
=MODE(1,2,2,3,3,3,4,5) 3

=COUNT(D22:D27) 4

=COUNTA(D22:D27) 5

=COUNTBLANK(D22:D27) 1

=STDEV(1,2,3,4,5) 1.5811388300842

You might also like