SlideShare una empresa de Scribd logo
1 de 4
Descargar para leer sin conexión
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

.

Más contenido relacionado

La actualidad más candente

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
 

La actualidad más candente (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
 

Destacado

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
 

Destacado (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
 

Similar a 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
 

Similar a 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
 

Más de 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
 

Más de 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
 

Último

Indexing Structures in Database Management system.pdf
Indexing Structures in Database Management system.pdfIndexing Structures in Database Management system.pdf
Indexing Structures in Database Management system.pdfChristalin Nelson
 
Employablity presentation and Future Career Plan.pptx
Employablity presentation and Future Career Plan.pptxEmployablity presentation and Future Career Plan.pptx
Employablity presentation and Future Career Plan.pptxryandux83rd
 
4.9.24 School Desegregation in Boston.pptx
4.9.24 School Desegregation in Boston.pptx4.9.24 School Desegregation in Boston.pptx
4.9.24 School Desegregation in Boston.pptxmary850239
 
Narcotic and Non Narcotic Analgesic..pdf
Narcotic and Non Narcotic Analgesic..pdfNarcotic and Non Narcotic Analgesic..pdf
Narcotic and Non Narcotic Analgesic..pdfPrerana Jadhav
 
CLASSIFICATION OF ANTI - CANCER DRUGS.pptx
CLASSIFICATION OF ANTI - CANCER DRUGS.pptxCLASSIFICATION OF ANTI - CANCER DRUGS.pptx
CLASSIFICATION OF ANTI - CANCER DRUGS.pptxAnupam32727
 
BÀI TẬP BỔ TRỢ TIẾNG ANH 11 THEO ĐƠN VỊ BÀI HỌC - CẢ NĂM - CÓ FILE NGHE (GLOB...
BÀI TẬP BỔ TRỢ TIẾNG ANH 11 THEO ĐƠN VỊ BÀI HỌC - CẢ NĂM - CÓ FILE NGHE (GLOB...BÀI TẬP BỔ TRỢ TIẾNG ANH 11 THEO ĐƠN VỊ BÀI HỌC - CẢ NĂM - CÓ FILE NGHE (GLOB...
BÀI TẬP BỔ TRỢ TIẾNG ANH 11 THEO ĐƠN VỊ BÀI HỌC - CẢ NĂM - CÓ FILE NGHE (GLOB...Nguyen Thanh Tu Collection
 
Q-Factor General Quiz-7th April 2024, Quiz Club NITW
Q-Factor General Quiz-7th April 2024, Quiz Club NITWQ-Factor General Quiz-7th April 2024, Quiz Club NITW
Q-Factor General Quiz-7th April 2024, Quiz Club NITWQuiz Club NITW
 
Integumentary System SMP B. Pharm Sem I.ppt
Integumentary System SMP B. Pharm Sem I.pptIntegumentary System SMP B. Pharm Sem I.ppt
Integumentary System SMP B. Pharm Sem I.pptshraddhaparab530
 
Mythology Quiz-4th April 2024, Quiz Club NITW
Mythology Quiz-4th April 2024, Quiz Club NITWMythology Quiz-4th April 2024, Quiz Club NITW
Mythology Quiz-4th April 2024, Quiz Club NITWQuiz Club NITW
 
Oppenheimer Film Discussion for Philosophy and Film
Oppenheimer Film Discussion for Philosophy and FilmOppenheimer Film Discussion for Philosophy and Film
Oppenheimer Film Discussion for Philosophy and FilmStan Meyer
 
Decoding the Tweet _ Practical Criticism in the Age of Hashtag.pptx
Decoding the Tweet _ Practical Criticism in the Age of Hashtag.pptxDecoding the Tweet _ Practical Criticism in the Age of Hashtag.pptx
Decoding the Tweet _ Practical Criticism in the Age of Hashtag.pptxDhatriParmar
 
31 ĐỀ THI THỬ VÀO LỚP 10 - TIẾNG ANH - FORM MỚI 2025 - 40 CÂU HỎI - BÙI VĂN V...
31 ĐỀ THI THỬ VÀO LỚP 10 - TIẾNG ANH - FORM MỚI 2025 - 40 CÂU HỎI - BÙI VĂN V...31 ĐỀ THI THỬ VÀO LỚP 10 - TIẾNG ANH - FORM MỚI 2025 - 40 CÂU HỎI - BÙI VĂN V...
31 ĐỀ THI THỬ VÀO LỚP 10 - TIẾNG ANH - FORM MỚI 2025 - 40 CÂU HỎI - BÙI VĂN V...Nguyen Thanh Tu Collection
 
Beauty Amidst the Bytes_ Unearthing Unexpected Advantages of the Digital Wast...
Beauty Amidst the Bytes_ Unearthing Unexpected Advantages of the Digital Wast...Beauty Amidst the Bytes_ Unearthing Unexpected Advantages of the Digital Wast...
Beauty Amidst the Bytes_ Unearthing Unexpected Advantages of the Digital Wast...DhatriParmar
 
Congestive Cardiac Failure..presentation
Congestive Cardiac Failure..presentationCongestive Cardiac Failure..presentation
Congestive Cardiac Failure..presentationdeepaannamalai16
 

Último (20)

Mattingly "AI & Prompt Design: Large Language Models"
Mattingly "AI & Prompt Design: Large Language Models"Mattingly "AI & Prompt Design: Large Language Models"
Mattingly "AI & Prompt Design: Large Language Models"
 
INCLUSIVE EDUCATION PRACTICES FOR TEACHERS AND TRAINERS.pptx
INCLUSIVE EDUCATION PRACTICES FOR TEACHERS AND TRAINERS.pptxINCLUSIVE EDUCATION PRACTICES FOR TEACHERS AND TRAINERS.pptx
INCLUSIVE EDUCATION PRACTICES FOR TEACHERS AND TRAINERS.pptx
 
Spearman's correlation,Formula,Advantages,
Spearman's correlation,Formula,Advantages,Spearman's correlation,Formula,Advantages,
Spearman's correlation,Formula,Advantages,
 
Indexing Structures in Database Management system.pdf
Indexing Structures in Database Management system.pdfIndexing Structures in Database Management system.pdf
Indexing Structures in Database Management system.pdf
 
Employablity presentation and Future Career Plan.pptx
Employablity presentation and Future Career Plan.pptxEmployablity presentation and Future Career Plan.pptx
Employablity presentation and Future Career Plan.pptx
 
4.9.24 School Desegregation in Boston.pptx
4.9.24 School Desegregation in Boston.pptx4.9.24 School Desegregation in Boston.pptx
4.9.24 School Desegregation in Boston.pptx
 
Plagiarism,forms,understand about plagiarism,avoid plagiarism,key significanc...
Plagiarism,forms,understand about plagiarism,avoid plagiarism,key significanc...Plagiarism,forms,understand about plagiarism,avoid plagiarism,key significanc...
Plagiarism,forms,understand about plagiarism,avoid plagiarism,key significanc...
 
Mattingly "AI & Prompt Design" - Introduction to Machine Learning"
Mattingly "AI & Prompt Design" - Introduction to Machine Learning"Mattingly "AI & Prompt Design" - Introduction to Machine Learning"
Mattingly "AI & Prompt Design" - Introduction to Machine Learning"
 
Narcotic and Non Narcotic Analgesic..pdf
Narcotic and Non Narcotic Analgesic..pdfNarcotic and Non Narcotic Analgesic..pdf
Narcotic and Non Narcotic Analgesic..pdf
 
CLASSIFICATION OF ANTI - CANCER DRUGS.pptx
CLASSIFICATION OF ANTI - CANCER DRUGS.pptxCLASSIFICATION OF ANTI - CANCER DRUGS.pptx
CLASSIFICATION OF ANTI - CANCER DRUGS.pptx
 
BÀI TẬP BỔ TRỢ TIẾNG ANH 11 THEO ĐƠN VỊ BÀI HỌC - CẢ NĂM - CÓ FILE NGHE (GLOB...
BÀI TẬP BỔ TRỢ TIẾNG ANH 11 THEO ĐƠN VỊ BÀI HỌC - CẢ NĂM - CÓ FILE NGHE (GLOB...BÀI TẬP BỔ TRỢ TIẾNG ANH 11 THEO ĐƠN VỊ BÀI HỌC - CẢ NĂM - CÓ FILE NGHE (GLOB...
BÀI TẬP BỔ TRỢ TIẾNG ANH 11 THEO ĐƠN VỊ BÀI HỌC - CẢ NĂM - CÓ FILE NGHE (GLOB...
 
Q-Factor General Quiz-7th April 2024, Quiz Club NITW
Q-Factor General Quiz-7th April 2024, Quiz Club NITWQ-Factor General Quiz-7th April 2024, Quiz Club NITW
Q-Factor General Quiz-7th April 2024, Quiz Club NITW
 
Chi-Square Test Non Parametric Test Categorical Variable
Chi-Square Test Non Parametric Test Categorical VariableChi-Square Test Non Parametric Test Categorical Variable
Chi-Square Test Non Parametric Test Categorical Variable
 
Integumentary System SMP B. Pharm Sem I.ppt
Integumentary System SMP B. Pharm Sem I.pptIntegumentary System SMP B. Pharm Sem I.ppt
Integumentary System SMP B. Pharm Sem I.ppt
 
Mythology Quiz-4th April 2024, Quiz Club NITW
Mythology Quiz-4th April 2024, Quiz Club NITWMythology Quiz-4th April 2024, Quiz Club NITW
Mythology Quiz-4th April 2024, Quiz Club NITW
 
Oppenheimer Film Discussion for Philosophy and Film
Oppenheimer Film Discussion for Philosophy and FilmOppenheimer Film Discussion for Philosophy and Film
Oppenheimer Film Discussion for Philosophy and Film
 
Decoding the Tweet _ Practical Criticism in the Age of Hashtag.pptx
Decoding the Tweet _ Practical Criticism in the Age of Hashtag.pptxDecoding the Tweet _ Practical Criticism in the Age of Hashtag.pptx
Decoding the Tweet _ Practical Criticism in the Age of Hashtag.pptx
 
31 ĐỀ THI THỬ VÀO LỚP 10 - TIẾNG ANH - FORM MỚI 2025 - 40 CÂU HỎI - BÙI VĂN V...
31 ĐỀ THI THỬ VÀO LỚP 10 - TIẾNG ANH - FORM MỚI 2025 - 40 CÂU HỎI - BÙI VĂN V...31 ĐỀ THI THỬ VÀO LỚP 10 - TIẾNG ANH - FORM MỚI 2025 - 40 CÂU HỎI - BÙI VĂN V...
31 ĐỀ THI THỬ VÀO LỚP 10 - TIẾNG ANH - FORM MỚI 2025 - 40 CÂU HỎI - BÙI VĂN V...
 
Beauty Amidst the Bytes_ Unearthing Unexpected Advantages of the Digital Wast...
Beauty Amidst the Bytes_ Unearthing Unexpected Advantages of the Digital Wast...Beauty Amidst the Bytes_ Unearthing Unexpected Advantages of the Digital Wast...
Beauty Amidst the Bytes_ Unearthing Unexpected Advantages of the Digital Wast...
 
Congestive Cardiac Failure..presentation
Congestive Cardiac Failure..presentationCongestive Cardiac Failure..presentation
Congestive Cardiac Failure..presentation
 

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 .