Some Functions in Excel Please Note That in A Syntax, Optional Parameters Are Enclosed Within Square Brackets Text Functions Function Name
Some Functions in Excel Please Note That in A Syntax, Optional Parameters Are Enclosed Within Square Brackets Text Functions Function Name
Some Functions in Excel Please Note That in A Syntax, Optional Parameters Are Enclosed Within Square Brackets Text Functions Function Name
Text Functions
Function Name
Lower(text)
Upper(text)
Proper(text)
Text(data, format)
Trim(text)
Len(text)
Rept(text,no of times)
Left(text,num_char)
Right(text,num_char)
Mid(text,start_num,num_char)
Find(text,within_text,start_num)
Search(text,within_text,start_num)
Row(cell address)
Column(cell address)
Replace(old_text,start_num,num_char,new_text)
Substitute(text,old_text,new_text,[,instance number])
Information Functions
Function Name
cell(info_type[,reference])
info(type_text)
ISFunctions
ISBlank(value)
ISErr(value)
ISEven(value)
ISOdd(value)
ISNumber(value)
ISText(value)
Function Name
Today()
Date(year,month,day)
Datevalue(text)
Year(date)
month(date)
day(date)
weekday(date[,returntype])
weeknum(date[,returntype])
Now()
Time(hr,min,sec)
Timevalue(text)
Hour(time)
Minute(time)
Second(Time)
Math Functions
Round(Number, No_of_digits)
Rounddown(num,num_digits)
RoundUp(num,num_digits)
Even(number)
Odd(number)
Int(number)
Trunc(number[,numdigits])
Mod(number,divisor)
Rand()
Randbetween(bottom,top)
Statistical Functions
numbers
23
67
32
32
45
Median(number1 [,nunber2,])
Mode(number1 [,nunber2,])
Large(array, kth largest)
Small(array, kth largest)
Var()
Stdev()
Frequency(data_array, bins_array)
numbers
1
1
4
2
4
3
2
5
10
10
7
Histogram
Random numver generation
Regression
Sampling
t-test
z-test
Usage
Test score
70
75
Perform the action if all the conditions are true
Perform the action if any of the conditions is true
Usage
Usage
Returns the current date
Returns the serial number of the given date
Converts a string into date
Returns the component of the date
Returns the month component of the date
Returns the day component of the date
Calculates median
Calculates mode
To find the kth largest number in the array
To find the kth smallest number in the array
To find the variance
To get the standard deviation
Predicts the new y value for the new x value by understanding
the trend being followed by the known x and y values
To construct a frequency distribution as per the upper bounds
of the bins. This is the array function and hence can be
executed by pressing cntrl+shift+enter
Analysis toolpack
A simple analysis of variance. It tests the hypothesis that the
means from several samples are equal
An extension of the single factor annova to include more than
one sample for each group of data
A two factor annova that does'nt include more than one
sampling per group
Returns the correlation coefficient between two sets of data
Generates a report showing various statistics for a set of data
Performs two sample F-test to compare two population
variance
me Functions in Excel
Example
Lower("ABC")
Upper("abc")
Proper("information technology for management")
Text(now(),"dd-mmm-yyyy")
Trim("
abc")
Len("IT for Management")
Rept("*",5)
Left("GITAM University",5)
Right("GITAM University", 10)
Mid("GITAM University", 4,6)
FIND("are","How are you",1)
SEARCH("ARE","How are you",1)
ROW(A1)
Column(C5)
REPLACE("management",1,6,"commit")
Example
IF(AND(B25>=75,C25>40),"Promote","Detain")
IF(AND(B26>=75,C26>40),"Promote","Detain")
IF(OR(B25>=75,C25>40),"Promote","Detain")
IF(OR(B26>=75,C26>40),"Promote","Detain")
Example
CELL("contents",E27)
INFO("osversion")
ISBlank(d31)
Iserr(E30)
ISeven(C26)
ISODD(C26)
ISNUMBER(E27)
ISTEXT(E27)
8/8/2015 - "8/1/2015"
Example
Today()
DATE(2015,8,6)
YEAR(TODAY())
MONTH(TODAY())
DAY(TODAY())
WEEKDAY(TODAY())
weeknum("August 8, 2015")
Now()
TIME(12,15,30)
HOUR(NOW())
MINUTE(NOW())
SECOND(NOW())
ROUND(123.45678,2)
ROUNDDOWN(1.1,0)
ROUNDUP(1.1,0)
EVEN(14.2)
ODD(14.2)
16
TRUNC(16.678,1)
MOD(16,3)
RAND()
RANDBETWEEN(5,25)
MEDIAN(A88:A92)
MODE(A88:A92)
LARGE(A88:A92,2)
SMALL(A88:A92,2)
VAR(A88:A92)
STDEV(A88:A92)
FREQUENCY(A101:A111,{3,7,10})
Add-in in Excel
Result
Remarks
abc
ABC
Information Technology For Management
now() returns current date
and time
15-Oct-2015
abc
17
*****
GITAM
University
AM Uni
5
5
1
3
commitment
How do you do
Result
Remarks
Promote
Detain
Promote
Promote
Result
Remarks
Promote
type_text could be
directory, numfile, origin,
osversion, release, recalc,
system
1
0
0
1
0
1
Result
Remarks
10/15/2015
8/6/2015
2015
10
15
123.46
1
2
16
15
16
16.6
1
To generate number >=0
and < n, give rand()*n.
Also note that random
numbers may change with
0.9898788107 every action
Note that random
numbers may change with
14 every action
32
32
45
32
292.7
17.1084774308
5 0-3
4 4-7
2 8-10