SlideShare ist ein Scribd-Unternehmen logo
1 von 4
Downloaden Sie, um offline zu lesen
Math function
=sum(n1,n2……..)
Sum function return total of
given number or ref.
Exam =sum(4,5,2)
11
=product(n1,n2,n3…….)
Product function return
multiplication of given number
or ref
=product(5,4,2) (5*4*2=40)
40
=min(n1,n2,n3…)
Minimum function return mini
number from given number or
ref
=min(4,5,6,2)
2
=max(n1,n2,n3…….) max
function return maximum
number from given
Number or ref
=count() count function count
numerical cell
=counta() countall function
count all cell from given ref.
=countblank() function count
blank cell

=average(n1,n2,n3……)
average function return
average of given num
=average(4,5,6)
5
=ceiling(number, significant)
=ceiling(123,10)
130
=floor(number, significant)
=floor(123,10)
120
=round(number, significant)
=round(123.256,2)
123.26
=roundup(number,
significant)
=round(123.256,2)
123.26
=rounddown(number,
significant)
=round(123.256,2)
123.26
=int(number) int function
return integar value from
given numer
=int(145.20)
145
=mod(number , divisor)

rock_siraj@ymail.com
=mod(10,3)
1
Mod function return reminder
=power(number , power)
=power(5,3) power function
return power of given number
and power
125 (5*5*5)
=fact(number)
Fact function return factorial
of given number
=fact(5)
120 (5*4*3*2*1)
=rand() rand function return
random number
=randbetween(min number,
max number)
Rand between function return
randomly number between
given
Min and maximum number
=rank(number, rang)
Rank function return rank of
given number from given rang
=sort(number)
Return square root of given
number
=sQrt(25)
5
rock_siraj@ymail.com

Text function
=upper(“string “) upper
function convert all letter in
capital letter
=upper(“lion”)
LION
=lower(“String”) lower
function convert all letter in
small letter
=lower(“LIOn”)
lion
=proper(“this is a book”)
Proper function convert
capital letter of each word of
given string
=proper(“this is a book”)
This Is A Book
=len(“string”)
Len function count char of
given string
=len(“lion”)
4
=left(string, number)
Left function return particular
number of char from the left
side
=left(“ram”,2)
ra
=right(“string”,number)
Right function return
particular number of char
from right side
=right(“ram”,2)
am
=trim(“string”)
Remove space from left and
right side of string,
=concatenate(“string1”,”string
2”……………..)
Concatenate function
concatenate given multiple
string oncatenate
Operator is also aviable in
excel (&)
=rept(“string”,”number of
times) rept function repeat
given
string no of times
=rept(“lion”,3)
lionlionlion
=value(text) value function
convert string number in
numerical number
=text(number) text number
convert numerical number in
string number

rock_siraj@ymail.com

=code(“char”) code function
return ascii code of given
number
=char(ascii code) function
return char of given ascii code
=replace()
Date and time
Date formate depand on o.s (
o.s default fomat is
mm/dd/yyyy)
=and(con1,con2,……)
And function return ture if
given all condition are true
=or(con1,con2,con3……………….
.)
Or function return false if
given all condition are false
=not(condition)
Not function convert condition
result. If condition is ture it
return false. If
Condition is false it return true
=countif(range,condition)
countif function count cell
according to given
Condition
=iferror(error,”massage”) if
error function return given
massage if any error
=sumif(range,condition)
Sumif function return total of
given range according to
condition

rock_siraj@ymail.com

.

Weitere ähnliche Inhalte

Was ist angesagt?

Beginning Haskell, Dive In, Its Not That Scary!
Beginning Haskell, Dive In, Its Not That Scary!Beginning Haskell, Dive In, Its Not That Scary!
Beginning Haskell, Dive In, Its Not That Scary!priort
 
Numpy tutorial(final) 20160303
Numpy tutorial(final) 20160303Numpy tutorial(final) 20160303
Numpy tutorial(final) 20160303Namgee Lee
 
Functional programming with haskell
Functional programming with haskellFunctional programming with haskell
Functional programming with haskellfaradjpour
 
Introduction to NumPy for Machine Learning Programmers
Introduction to NumPy for Machine Learning ProgrammersIntroduction to NumPy for Machine Learning Programmers
Introduction to NumPy for Machine Learning ProgrammersKimikazu Kato
 
Python programming for Beginners - II
Python programming for Beginners - IIPython programming for Beginners - II
Python programming for Beginners - IINEEVEE Technologies
 
Functions in advanced programming
Functions in advanced programmingFunctions in advanced programming
Functions in advanced programmingVisnuDharsini
 
Functors, applicatives, monads
Functors, applicatives, monadsFunctors, applicatives, monads
Functors, applicatives, monadsrkaippully
 
Intoduction to numpy
Intoduction to numpyIntoduction to numpy
Intoduction to numpyFaraz Ahmed
 
TypeLevel Summit
TypeLevel SummitTypeLevel Summit
TypeLevel SummitLuca Belli
 
The Ring programming language version 1.7 book - Part 26 of 196
The Ring programming language version 1.7 book - Part 26 of 196The Ring programming language version 1.7 book - Part 26 of 196
The Ring programming language version 1.7 book - Part 26 of 196Mahmoud Samir Fayed
 
Reasoning about laziness
Reasoning about lazinessReasoning about laziness
Reasoning about lazinessJohan Tibell
 
Python3 cheatsheet
Python3 cheatsheetPython3 cheatsheet
Python3 cheatsheetGil Cohen
 
Introduction to Recursion (Python)
Introduction to Recursion (Python)Introduction to Recursion (Python)
Introduction to Recursion (Python)Thai Pangsakulyanont
 
Cheat sheet python3
Cheat sheet python3Cheat sheet python3
Cheat sheet python3sxw2k
 
Functional Core and Imperative Shell - Game of Life Example - Haskell and Scala
Functional Core and Imperative Shell - Game of Life Example - Haskell and ScalaFunctional Core and Imperative Shell - Game of Life Example - Haskell and Scala
Functional Core and Imperative Shell - Game of Life Example - Haskell and ScalaPhilip Schwarz
 
하스켈 프로그래밍 입문 4
하스켈 프로그래밍 입문 4하스켈 프로그래밍 입문 4
하스켈 프로그래밍 입문 4Kwang Yul Seo
 

Was ist angesagt? (20)

Beginning Haskell, Dive In, Its Not That Scary!
Beginning Haskell, Dive In, Its Not That Scary!Beginning Haskell, Dive In, Its Not That Scary!
Beginning Haskell, Dive In, Its Not That Scary!
 
Map, Reduce and Filter in Swift
Map, Reduce and Filter in SwiftMap, Reduce and Filter in Swift
Map, Reduce and Filter in Swift
 
Numpy tutorial(final) 20160303
Numpy tutorial(final) 20160303Numpy tutorial(final) 20160303
Numpy tutorial(final) 20160303
 
C++ ARRAY WITH EXAMPLES
C++ ARRAY WITH EXAMPLESC++ ARRAY WITH EXAMPLES
C++ ARRAY WITH EXAMPLES
 
Functional programming with haskell
Functional programming with haskellFunctional programming with haskell
Functional programming with haskell
 
Introduction to NumPy for Machine Learning Programmers
Introduction to NumPy for Machine Learning ProgrammersIntroduction to NumPy for Machine Learning Programmers
Introduction to NumPy for Machine Learning Programmers
 
Python programming for Beginners - II
Python programming for Beginners - IIPython programming for Beginners - II
Python programming for Beginners - II
 
Functions in advanced programming
Functions in advanced programmingFunctions in advanced programming
Functions in advanced programming
 
Functors, applicatives, monads
Functors, applicatives, monadsFunctors, applicatives, monads
Functors, applicatives, monads
 
Intoduction to numpy
Intoduction to numpyIntoduction to numpy
Intoduction to numpy
 
NumPy Refresher
NumPy RefresherNumPy Refresher
NumPy Refresher
 
TypeLevel Summit
TypeLevel SummitTypeLevel Summit
TypeLevel Summit
 
The Ring programming language version 1.7 book - Part 26 of 196
The Ring programming language version 1.7 book - Part 26 of 196The Ring programming language version 1.7 book - Part 26 of 196
The Ring programming language version 1.7 book - Part 26 of 196
 
Reasoning about laziness
Reasoning about lazinessReasoning about laziness
Reasoning about laziness
 
Python3 cheatsheet
Python3 cheatsheetPython3 cheatsheet
Python3 cheatsheet
 
Introduction to Recursion (Python)
Introduction to Recursion (Python)Introduction to Recursion (Python)
Introduction to Recursion (Python)
 
Cheat sheet python3
Cheat sheet python3Cheat sheet python3
Cheat sheet python3
 
Functional Core and Imperative Shell - Game of Life Example - Haskell and Scala
Functional Core and Imperative Shell - Game of Life Example - Haskell and ScalaFunctional Core and Imperative Shell - Game of Life Example - Haskell and Scala
Functional Core and Imperative Shell - Game of Life Example - Haskell and Scala
 
Numpy python cheat_sheet
Numpy python cheat_sheetNumpy python cheat_sheet
Numpy python cheat_sheet
 
하스켈 프로그래밍 입문 4
하스켈 프로그래밍 입문 4하스켈 프로그래밍 입문 4
하스켈 프로그래밍 입문 4
 

Andere mochten auch

2011 quynh luu 1
2011 quynh luu 12011 quynh luu 1
2011 quynh luu 1hanhtvq
 
Team c usermanual
Team c usermanualTeam c usermanual
Team c usermanualmaryh883
 
Presentation graphics important questions
Presentation graphics important questionsPresentation graphics important questions
Presentation graphics important questionsSirajRock
 
Excel important question for rscit exams
Excel important question for rscit examsExcel important question for rscit exams
Excel important question for rscit examsSirajRock
 
77. ho thpt l gia vn - thpt lng c bng hong ho
77. ho thpt   l gia vn - thpt lng c bng hong ho77. ho thpt   l gia vn - thpt lng c bng hong ho
77. ho thpt l gia vn - thpt lng c bng hong hohanhtvq
 
Parents-with-Heart
Parents-with-HeartParents-with-Heart
Parents-with-HeartSirajRock
 
Download all-site-links
Download all-site-linksDownload all-site-links
Download all-site-linksSirajRock
 
Rs cit important question
Rs cit important questionRs cit important question
Rs cit important questionSirajRock
 
Disk operating system
Disk operating systemDisk operating system
Disk operating systemSirajRock
 
Sirajrock basic- computer -2
Sirajrock  basic- computer -2Sirajrock  basic- computer -2
Sirajrock basic- computer -2SirajRock
 
All about computers
All about computersAll about computers
All about computersSirajRock
 
Password-Change-Gmail-A/C
Password-Change-Gmail-A/CPassword-Change-Gmail-A/C
Password-Change-Gmail-A/CSirajRock
 
Presentation word
Presentation wordPresentation word
Presentation wordSirajRock
 
मूल इकाईयॉ
मूल इकाईयॉमूल इकाईयॉ
मूल इकाईयॉSirajRock
 
Sirajrock operating-system
Sirajrock operating-systemSirajrock operating-system
Sirajrock operating-systemSirajRock
 

Andere mochten auch (20)

2011 quynh luu 1
2011 quynh luu 12011 quynh luu 1
2011 quynh luu 1
 
Team c usermanual
Team c usermanualTeam c usermanual
Team c usermanual
 
Presentation graphics important questions
Presentation graphics important questionsPresentation graphics important questions
Presentation graphics important questions
 
Auto title loan
Auto title loanAuto title loan
Auto title loan
 
Baogia mayruaxe
Baogia mayruaxeBaogia mayruaxe
Baogia mayruaxe
 
Excel important question for rscit exams
Excel important question for rscit examsExcel important question for rscit exams
Excel important question for rscit exams
 
77. ho thpt l gia vn - thpt lng c bng hong ho
77. ho thpt   l gia vn - thpt lng c bng hong ho77. ho thpt   l gia vn - thpt lng c bng hong ho
77. ho thpt l gia vn - thpt lng c bng hong ho
 
Parents-with-Heart
Parents-with-HeartParents-with-Heart
Parents-with-Heart
 
Download all-site-links
Download all-site-linksDownload all-site-links
Download all-site-links
 
18 aug 2013
18 aug 201318 aug 2013
18 aug 2013
 
Rs cit important question
Rs cit important questionRs cit important question
Rs cit important question
 
Disk operating system
Disk operating systemDisk operating system
Disk operating system
 
11 aug 2013
11 aug 201311 aug 2013
11 aug 2013
 
Sirajrock basic- computer -2
Sirajrock  basic- computer -2Sirajrock  basic- computer -2
Sirajrock basic- computer -2
 
19 jan 2014
19 jan 201419 jan 2014
19 jan 2014
 
All about computers
All about computersAll about computers
All about computers
 
Password-Change-Gmail-A/C
Password-Change-Gmail-A/CPassword-Change-Gmail-A/C
Password-Change-Gmail-A/C
 
Presentation word
Presentation wordPresentation word
Presentation word
 
मूल इकाईयॉ
मूल इकाईयॉमूल इकाईयॉ
मूल इकाईयॉ
 
Sirajrock operating-system
Sirajrock operating-systemSirajrock operating-system
Sirajrock operating-system
 

Ähnlich wie Excel function

Swift 5.1 Language Guide Notes.pdf
Swift 5.1 Language Guide Notes.pdfSwift 5.1 Language Guide Notes.pdf
Swift 5.1 Language Guide Notes.pdfJkPoppy
 
R Cheat Sheet for Data Analysts and Statisticians.pdf
R Cheat Sheet for Data Analysts and Statisticians.pdfR Cheat Sheet for Data Analysts and Statisticians.pdf
R Cheat Sheet for Data Analysts and Statisticians.pdfTimothy McBush Hiele
 
Python programming: Anonymous functions, String operations
Python programming: Anonymous functions, String operationsPython programming: Anonymous functions, String operations
Python programming: Anonymous functions, String operationsMegha V
 
Programming in lua STRING AND ARRAY
Programming in lua STRING AND ARRAYProgramming in lua STRING AND ARRAY
Programming in lua STRING AND ARRAYvikram mahendra
 
Implement the following sorting algorithms Bubble Sort Insertion S.pdf
Implement the following sorting algorithms  Bubble Sort  Insertion S.pdfImplement the following sorting algorithms  Bubble Sort  Insertion S.pdf
Implement the following sorting algorithms Bubble Sort Insertion S.pdfkesav24
 
BUilt in Functions and Simple programs in R.pdf
BUilt in Functions and Simple programs in R.pdfBUilt in Functions and Simple programs in R.pdf
BUilt in Functions and Simple programs in R.pdfkarthikaparthasarath
 
Python programming workshop session 3
Python programming workshop session 3Python programming workshop session 3
Python programming workshop session 3Abdul Haseeb
 
Swift 함수 커링 사용하기
Swift 함수 커링 사용하기Swift 함수 커링 사용하기
Swift 함수 커링 사용하기진성 오
 
Python High Level Functions_Ch 11.ppt
Python High Level Functions_Ch 11.pptPython High Level Functions_Ch 11.ppt
Python High Level Functions_Ch 11.pptAnishaJ7
 
Monadologie
MonadologieMonadologie
Monadologieleague
 
An overview of Python 2.7
An overview of Python 2.7An overview of Python 2.7
An overview of Python 2.7decoupled
 
GE8151 Problem Solving and Python Programming
GE8151 Problem Solving and Python ProgrammingGE8151 Problem Solving and Python Programming
GE8151 Problem Solving and Python ProgrammingMuthu Vinayagam
 
Python 101++: Let's Get Down to Business!
Python 101++: Let's Get Down to Business!Python 101++: Let's Get Down to Business!
Python 101++: Let's Get Down to Business!Paige Bailey
 

Ähnlich wie Excel function (20)

Swift 5.1 Language Guide Notes.pdf
Swift 5.1 Language Guide Notes.pdfSwift 5.1 Language Guide Notes.pdf
Swift 5.1 Language Guide Notes.pdf
 
R Cheat Sheet for Data Analysts and Statisticians.pdf
R Cheat Sheet for Data Analysts and Statisticians.pdfR Cheat Sheet for Data Analysts and Statisticians.pdf
R Cheat Sheet for Data Analysts and Statisticians.pdf
 
ملخص البرمجة المرئية - الوحدة الخامسة
ملخص البرمجة المرئية - الوحدة الخامسةملخص البرمجة المرئية - الوحدة الخامسة
ملخص البرمجة المرئية - الوحدة الخامسة
 
purrr.pdf
purrr.pdfpurrr.pdf
purrr.pdf
 
Python programming: Anonymous functions, String operations
Python programming: Anonymous functions, String operationsPython programming: Anonymous functions, String operations
Python programming: Anonymous functions, String operations
 
Programming in lua STRING AND ARRAY
Programming in lua STRING AND ARRAYProgramming in lua STRING AND ARRAY
Programming in lua STRING AND ARRAY
 
Python : Functions
Python : FunctionsPython : Functions
Python : Functions
 
Implement the following sorting algorithms Bubble Sort Insertion S.pdf
Implement the following sorting algorithms  Bubble Sort  Insertion S.pdfImplement the following sorting algorithms  Bubble Sort  Insertion S.pdf
Implement the following sorting algorithms Bubble Sort Insertion S.pdf
 
BUilt in Functions and Simple programs in R.pdf
BUilt in Functions and Simple programs in R.pdfBUilt in Functions and Simple programs in R.pdf
BUilt in Functions and Simple programs in R.pdf
 
Python programming workshop session 3
Python programming workshop session 3Python programming workshop session 3
Python programming workshop session 3
 
Swift 함수 커링 사용하기
Swift 함수 커링 사용하기Swift 함수 커링 사용하기
Swift 함수 커링 사용하기
 
Python High Level Functions_Ch 11.ppt
Python High Level Functions_Ch 11.pptPython High Level Functions_Ch 11.ppt
Python High Level Functions_Ch 11.ppt
 
Monadologie
MonadologieMonadologie
Monadologie
 
Learn Matlab
Learn MatlabLearn Matlab
Learn Matlab
 
Python Lecture 11
Python Lecture 11Python Lecture 11
Python Lecture 11
 
An overview of Python 2.7
An overview of Python 2.7An overview of Python 2.7
An overview of Python 2.7
 
A tour of Python
A tour of PythonA tour of Python
A tour of Python
 
GE8151 Problem Solving and Python Programming
GE8151 Problem Solving and Python ProgrammingGE8151 Problem Solving and Python Programming
GE8151 Problem Solving and Python Programming
 
Python 101++: Let's Get Down to Business!
Python 101++: Let's Get Down to Business!Python 101++: Let's Get Down to Business!
Python 101++: Let's Get Down to Business!
 
4. functions
4. functions4. functions
4. functions
 

Mehr von SirajRock

Microsoft office 2007
Microsoft office 2007Microsoft office 2007
Microsoft office 2007SirajRock
 
Sirajrockinhindi 150412043647-conversion-gate01
Sirajrockinhindi 150412043647-conversion-gate01Sirajrockinhindi 150412043647-conversion-gate01
Sirajrockinhindi 150412043647-conversion-gate01SirajRock
 
Sirajrockinhindi 141119222557-conversion-gate02
Sirajrockinhindi 141119222557-conversion-gate02Sirajrockinhindi 141119222557-conversion-gate02
Sirajrockinhindi 141119222557-conversion-gate02SirajRock
 
Ms office 2010 notes
Ms office 2010 notesMs office 2010 notes
Ms office 2010 notesSirajRock
 
Auto cad commands.
Auto cad commands.Auto cad commands.
Auto cad commands.SirajRock
 
Auto cad shortcuts
Auto cad shortcutsAuto cad shortcuts
Auto cad shortcutsSirajRock
 
Corel draw graphics suite x3 Notes
Corel draw graphics suite x3 NotesCorel draw graphics suite x3 Notes
Corel draw graphics suite x3 NotesSirajRock
 
Photoshop notes cs-4
Photoshop notes  cs-4Photoshop notes  cs-4
Photoshop notes cs-4SirajRock
 
Computer basics training siraj rock 2
Computer basics training siraj rock 2Computer basics training siraj rock 2
Computer basics training siraj rock 2SirajRock
 
Nari shakti-posters-presentation1
Nari shakti-posters-presentation1Nari shakti-posters-presentation1
Nari shakti-posters-presentation1SirajRock
 
Snooker-Game
Snooker-GameSnooker-Game
Snooker-GameSirajRock
 
Cartoon-Presentation
Cartoon-PresentationCartoon-Presentation
Cartoon-PresentationSirajRock
 
Rs cit-exam-paper-28-may-2014
Rs cit-exam-paper-28-may-2014Rs cit-exam-paper-28-may-2014
Rs cit-exam-paper-28-may-2014SirajRock
 
Computer fundamentals
Computer fundamentalsComputer fundamentals
Computer fundamentalsSirajRock
 
Internet notes hindi
Internet notes hindiInternet notes hindi
Internet notes hindiSirajRock
 
E mail-account
E mail-accountE mail-account
E mail-accountSirajRock
 
Rs cit important question
Rs cit important questionRs cit important question
Rs cit important questionSirajRock
 

Mehr von SirajRock (20)

Microsoft office 2007
Microsoft office 2007Microsoft office 2007
Microsoft office 2007
 
Mspaint
MspaintMspaint
Mspaint
 
Sirajrockinhindi 150412043647-conversion-gate01
Sirajrockinhindi 150412043647-conversion-gate01Sirajrockinhindi 150412043647-conversion-gate01
Sirajrockinhindi 150412043647-conversion-gate01
 
Sirajrockinhindi 141119222557-conversion-gate02
Sirajrockinhindi 141119222557-conversion-gate02Sirajrockinhindi 141119222557-conversion-gate02
Sirajrockinhindi 141119222557-conversion-gate02
 
Ms office 2010 notes
Ms office 2010 notesMs office 2010 notes
Ms office 2010 notes
 
Auto cad commands.
Auto cad commands.Auto cad commands.
Auto cad commands.
 
Auto cad shortcuts
Auto cad shortcutsAuto cad shortcuts
Auto cad shortcuts
 
Tarkki
TarkkiTarkki
Tarkki
 
Corel draw graphics suite x3 Notes
Corel draw graphics suite x3 NotesCorel draw graphics suite x3 Notes
Corel draw graphics suite x3 Notes
 
Photoshop notes cs-4
Photoshop notes  cs-4Photoshop notes  cs-4
Photoshop notes cs-4
 
Computer basics training siraj rock 2
Computer basics training siraj rock 2Computer basics training siraj rock 2
Computer basics training siraj rock 2
 
Nari shakti-posters-presentation1
Nari shakti-posters-presentation1Nari shakti-posters-presentation1
Nari shakti-posters-presentation1
 
Snooker-Game
Snooker-GameSnooker-Game
Snooker-Game
 
Shubham
ShubhamShubham
Shubham
 
Cartoon-Presentation
Cartoon-PresentationCartoon-Presentation
Cartoon-Presentation
 
Rs cit-exam-paper-28-may-2014
Rs cit-exam-paper-28-may-2014Rs cit-exam-paper-28-may-2014
Rs cit-exam-paper-28-may-2014
 
Computer fundamentals
Computer fundamentalsComputer fundamentals
Computer fundamentals
 
Internet notes hindi
Internet notes hindiInternet notes hindi
Internet notes hindi
 
E mail-account
E mail-accountE mail-account
E mail-account
 
Rs cit important question
Rs cit important questionRs cit important question
Rs cit important question
 

Kürzlich hochgeladen

Science 7 Quarter 4 Module 2: Natural Resources.pptx
Science 7 Quarter 4 Module 2: Natural Resources.pptxScience 7 Quarter 4 Module 2: Natural Resources.pptx
Science 7 Quarter 4 Module 2: Natural Resources.pptxMaryGraceBautista27
 
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️9953056974 Low Rate Call Girls In Saket, Delhi NCR
 
AMERICAN LANGUAGE HUB_Level2_Student'sBook_Answerkey.pdf
AMERICAN LANGUAGE HUB_Level2_Student'sBook_Answerkey.pdfAMERICAN LANGUAGE HUB_Level2_Student'sBook_Answerkey.pdf
AMERICAN LANGUAGE HUB_Level2_Student'sBook_Answerkey.pdfphamnguyenenglishnb
 
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptx
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptxECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptx
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptxiammrhaywood
 
THEORIES OF ORGANIZATION-PUBLIC ADMINISTRATION
THEORIES OF ORGANIZATION-PUBLIC ADMINISTRATIONTHEORIES OF ORGANIZATION-PUBLIC ADMINISTRATION
THEORIES OF ORGANIZATION-PUBLIC ADMINISTRATIONHumphrey A Beña
 
Like-prefer-love -hate+verb+ing & silent letters & citizenship text.pdf
Like-prefer-love -hate+verb+ing & silent letters & citizenship text.pdfLike-prefer-love -hate+verb+ing & silent letters & citizenship text.pdf
Like-prefer-love -hate+verb+ing & silent letters & citizenship text.pdfMr Bounab Samir
 
Full Stack Web Development Course for Beginners
Full Stack Web Development Course  for BeginnersFull Stack Web Development Course  for Beginners
Full Stack Web Development Course for BeginnersSabitha Banu
 
Visit to a blind student's school🧑‍🦯🧑‍🦯(community medicine)
Visit to a blind student's school🧑‍🦯🧑‍🦯(community medicine)Visit to a blind student's school🧑‍🦯🧑‍🦯(community medicine)
Visit to a blind student's school🧑‍🦯🧑‍🦯(community medicine)lakshayb543
 
Gas measurement O2,Co2,& ph) 04/2024.pptx
Gas measurement O2,Co2,& ph) 04/2024.pptxGas measurement O2,Co2,& ph) 04/2024.pptx
Gas measurement O2,Co2,& ph) 04/2024.pptxDr.Ibrahim Hassaan
 
Incoming and Outgoing Shipments in 3 STEPS Using Odoo 17
Incoming and Outgoing Shipments in 3 STEPS Using Odoo 17Incoming and Outgoing Shipments in 3 STEPS Using Odoo 17
Incoming and Outgoing Shipments in 3 STEPS Using Odoo 17Celine George
 
Field Attribute Index Feature in Odoo 17
Field Attribute Index Feature in Odoo 17Field Attribute Index Feature in Odoo 17
Field Attribute Index Feature in Odoo 17Celine George
 
Choosing the Right CBSE School A Comprehensive Guide for Parents
Choosing the Right CBSE School A Comprehensive Guide for ParentsChoosing the Right CBSE School A Comprehensive Guide for Parents
Choosing the Right CBSE School A Comprehensive Guide for Parentsnavabharathschool99
 
What is Model Inheritance in Odoo 17 ERP
What is Model Inheritance in Odoo 17 ERPWhat is Model Inheritance in Odoo 17 ERP
What is Model Inheritance in Odoo 17 ERPCeline George
 
ENGLISH 7_Q4_LESSON 2_ Employing a Variety of Strategies for Effective Interp...
ENGLISH 7_Q4_LESSON 2_ Employing a Variety of Strategies for Effective Interp...ENGLISH 7_Q4_LESSON 2_ Employing a Variety of Strategies for Effective Interp...
ENGLISH 7_Q4_LESSON 2_ Employing a Variety of Strategies for Effective Interp...JhezDiaz1
 
ACC 2024 Chronicles. Cardiology. Exam.pdf
ACC 2024 Chronicles. Cardiology. Exam.pdfACC 2024 Chronicles. Cardiology. Exam.pdf
ACC 2024 Chronicles. Cardiology. Exam.pdfSpandanaRallapalli
 
4.18.24 Movement Legacies, Reflection, and Review.pptx
4.18.24 Movement Legacies, Reflection, and Review.pptx4.18.24 Movement Legacies, Reflection, and Review.pptx
4.18.24 Movement Legacies, Reflection, and Review.pptxmary850239
 
HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...
HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...
HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...Nguyen Thanh Tu Collection
 

Kürzlich hochgeladen (20)

Science 7 Quarter 4 Module 2: Natural Resources.pptx
Science 7 Quarter 4 Module 2: Natural Resources.pptxScience 7 Quarter 4 Module 2: Natural Resources.pptx
Science 7 Quarter 4 Module 2: Natural Resources.pptx
 
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
 
AMERICAN LANGUAGE HUB_Level2_Student'sBook_Answerkey.pdf
AMERICAN LANGUAGE HUB_Level2_Student'sBook_Answerkey.pdfAMERICAN LANGUAGE HUB_Level2_Student'sBook_Answerkey.pdf
AMERICAN LANGUAGE HUB_Level2_Student'sBook_Answerkey.pdf
 
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptx
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptxECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptx
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptx
 
THEORIES OF ORGANIZATION-PUBLIC ADMINISTRATION
THEORIES OF ORGANIZATION-PUBLIC ADMINISTRATIONTHEORIES OF ORGANIZATION-PUBLIC ADMINISTRATION
THEORIES OF ORGANIZATION-PUBLIC ADMINISTRATION
 
Like-prefer-love -hate+verb+ing & silent letters & citizenship text.pdf
Like-prefer-love -hate+verb+ing & silent letters & citizenship text.pdfLike-prefer-love -hate+verb+ing & silent letters & citizenship text.pdf
Like-prefer-love -hate+verb+ing & silent letters & citizenship text.pdf
 
YOUVE GOT EMAIL_FINALS_EL_DORADO_2024.pptx
YOUVE GOT EMAIL_FINALS_EL_DORADO_2024.pptxYOUVE GOT EMAIL_FINALS_EL_DORADO_2024.pptx
YOUVE GOT EMAIL_FINALS_EL_DORADO_2024.pptx
 
Full Stack Web Development Course for Beginners
Full Stack Web Development Course  for BeginnersFull Stack Web Development Course  for Beginners
Full Stack Web Development Course for Beginners
 
Visit to a blind student's school🧑‍🦯🧑‍🦯(community medicine)
Visit to a blind student's school🧑‍🦯🧑‍🦯(community medicine)Visit to a blind student's school🧑‍🦯🧑‍🦯(community medicine)
Visit to a blind student's school🧑‍🦯🧑‍🦯(community medicine)
 
Gas measurement O2,Co2,& ph) 04/2024.pptx
Gas measurement O2,Co2,& ph) 04/2024.pptxGas measurement O2,Co2,& ph) 04/2024.pptx
Gas measurement O2,Co2,& ph) 04/2024.pptx
 
Incoming and Outgoing Shipments in 3 STEPS Using Odoo 17
Incoming and Outgoing Shipments in 3 STEPS Using Odoo 17Incoming and Outgoing Shipments in 3 STEPS Using Odoo 17
Incoming and Outgoing Shipments in 3 STEPS Using Odoo 17
 
Field Attribute Index Feature in Odoo 17
Field Attribute Index Feature in Odoo 17Field Attribute Index Feature in Odoo 17
Field Attribute Index Feature in Odoo 17
 
Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝
 
Choosing the Right CBSE School A Comprehensive Guide for Parents
Choosing the Right CBSE School A Comprehensive Guide for ParentsChoosing the Right CBSE School A Comprehensive Guide for Parents
Choosing the Right CBSE School A Comprehensive Guide for Parents
 
YOUVE_GOT_EMAIL_PRELIMS_EL_DORADO_2024.pptx
YOUVE_GOT_EMAIL_PRELIMS_EL_DORADO_2024.pptxYOUVE_GOT_EMAIL_PRELIMS_EL_DORADO_2024.pptx
YOUVE_GOT_EMAIL_PRELIMS_EL_DORADO_2024.pptx
 
What is Model Inheritance in Odoo 17 ERP
What is Model Inheritance in Odoo 17 ERPWhat is Model Inheritance in Odoo 17 ERP
What is Model Inheritance in Odoo 17 ERP
 
ENGLISH 7_Q4_LESSON 2_ Employing a Variety of Strategies for Effective Interp...
ENGLISH 7_Q4_LESSON 2_ Employing a Variety of Strategies for Effective Interp...ENGLISH 7_Q4_LESSON 2_ Employing a Variety of Strategies for Effective Interp...
ENGLISH 7_Q4_LESSON 2_ Employing a Variety of Strategies for Effective Interp...
 
ACC 2024 Chronicles. Cardiology. Exam.pdf
ACC 2024 Chronicles. Cardiology. Exam.pdfACC 2024 Chronicles. Cardiology. Exam.pdf
ACC 2024 Chronicles. Cardiology. Exam.pdf
 
4.18.24 Movement Legacies, Reflection, and Review.pptx
4.18.24 Movement Legacies, Reflection, and Review.pptx4.18.24 Movement Legacies, Reflection, and Review.pptx
4.18.24 Movement Legacies, Reflection, and Review.pptx
 
HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...
HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...
HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...
 

Excel function

  • 1. Math function =sum(n1,n2……..) Sum function return total of given number or ref. Exam =sum(4,5,2) 11 =product(n1,n2,n3…….) Product function return multiplication of given number or ref =product(5,4,2) (5*4*2=40) 40 =min(n1,n2,n3…) Minimum function return mini number from given number or ref =min(4,5,6,2) 2 =max(n1,n2,n3…….) max function return maximum number from given Number or ref =count() count function count numerical cell =counta() countall function count all cell from given ref. =countblank() function count blank cell =average(n1,n2,n3……) average function return average of given num =average(4,5,6) 5 =ceiling(number, significant) =ceiling(123,10) 130 =floor(number, significant) =floor(123,10) 120 =round(number, significant) =round(123.256,2) 123.26 =roundup(number, significant) =round(123.256,2) 123.26 =rounddown(number, significant) =round(123.256,2) 123.26 =int(number) int function return integar value from given numer =int(145.20) 145 =mod(number , divisor) rock_siraj@ymail.com
  • 2. =mod(10,3) 1 Mod function return reminder =power(number , power) =power(5,3) power function return power of given number and power 125 (5*5*5) =fact(number) Fact function return factorial of given number =fact(5) 120 (5*4*3*2*1) =rand() rand function return random number =randbetween(min number, max number) Rand between function return randomly number between given Min and maximum number =rank(number, rang) Rank function return rank of given number from given rang =sort(number) Return square root of given number =sQrt(25) 5 rock_siraj@ymail.com Text function =upper(“string “) upper function convert all letter in capital letter =upper(“lion”) LION =lower(“String”) lower function convert all letter in small letter =lower(“LIOn”) lion =proper(“this is a book”) Proper function convert capital letter of each word of given string =proper(“this is a book”) This Is A Book =len(“string”) Len function count char of given string =len(“lion”) 4 =left(string, number) Left function return particular number of char from the left side =left(“ram”,2) ra =right(“string”,number)
  • 3. Right function return particular number of char from right side =right(“ram”,2) am =trim(“string”) Remove space from left and right side of string, =concatenate(“string1”,”string 2”……………..) Concatenate function concatenate given multiple string oncatenate Operator is also aviable in excel (&) =rept(“string”,”number of times) rept function repeat given string no of times =rept(“lion”,3) lionlionlion =value(text) value function convert string number in numerical number =text(number) text number convert numerical number in string number rock_siraj@ymail.com =code(“char”) code function return ascii code of given number =char(ascii code) function return char of given ascii code =replace() Date and time Date formate depand on o.s ( o.s default fomat is mm/dd/yyyy)
  • 4. =and(con1,con2,……) And function return ture if given all condition are true =or(con1,con2,con3………………. .) Or function return false if given all condition are false =not(condition) Not function convert condition result. If condition is ture it return false. If Condition is false it return true =countif(range,condition) countif function count cell according to given Condition =iferror(error,”massage”) if error function return given massage if any error =sumif(range,condition) Sumif function return total of given range according to condition rock_siraj@ymail.com .