It Progress Notes
It Progress Notes
IT
Sum
Min
Max
Integer
Value
=VALUE(F7) VALUE function converts a text value that represents a number to a number.
Average
Average IF
AverageIFs
Concatenate
=concatenate(B2,c2)
=b2&” “&C2
=concatenate(b2,”,”,c2)
Left
Right
Mid
=mid(a2,2,1) Extract the second character from the data and display only one character
Length
Round
Round Up
Round Down
Select Cell Range and Name it by writing name in Name Box Naming, or providing absolute or
relative referencing
Count
Count if
CountA
=countA(a2:a10) Look at to range a2 to a10 thenumber of cells which are not empty
CountBlank
CountIFs
=COUNTIFS (B3:B8,">10”, C3:C8,"Yes") COUNTIFS function counts the number of cells in a range,
that meets a single or multiple criteria.
Sumif
=sumif(b2:b10,”
>1000
”)
Sum if above then 1000 values are available in range b2: b10 and sum the prices
Sumif
=sumif
(b2:b10,”wheat”,c2:c10)
Sum if word wheat is available in range b2:b10 and sum the prices from c2:c10
Sumifs
Lookup
=LOOKUP(F15,A1:A10,B1:B10) used to search one column of data and find data in the corresponding
row. For example, if you aresearching a column of employee IDs the LOOKUP function can find, say,
employee number 12345 in the ID column. Once it has found the ID12345 it then can return data
from that same row.
Vlookup
=vlookup(b2,code,2,0) Vertical look up to look up b2 value in code range and displaying second
column with exact match
Vlookup
=vlookup(b2,code,2,1) Vertical look up to look up b2 valuein code range and displaying second
column with approximate match
Hlookup
If function
If statement based on condition, if condition is true high price will be displayed and if condition is
false low-price will be displayed
Nested If function
Week days
=weekday(b2) On date data week day will return the value of the day starting from 1-7whereas
Sunday =1 and Saturday=7
Month
Day
Year
Minute
Hour
Today
=Today() TODAY function returns the current system date. This function will refresh the date
whenever the worksheet recalculates.
Now
=Now() NOW function returns the current system date and time. The NOWfunction will refresh the
date/time value whenever the worksheet recalculates.
Year Frac
=YEARFRAC(B9,D9,3) Calculates the fraction of the yearrepresented by the number of whole days
between two dates (thestart_date and the end_date). Use the YEARFRAC worksheet function to
identify the proportion of a whole year’s benefits or obligations to assign to a specific term.
Text =text((b2-b),”hh:mm”)
Subtract two time values and display it in hour minute formatRand =RAND() RAND function returns
a random number that is greater than or equal to 0 and less than 1. The RANDfunction returns a new
random number each time your spreadsheet recalculates. RandBetween =RANDBETWEEN(1,300)
This function returns a randomnumber that is between a bottomand top range, function returns
anew random number each time your spreadsheet recalculates. Product =PRODUCT(A2:A4)
or=PRODUCT(A2:A4,2)The PRODUCT function multiplies all the numbers given as arguments and
returns the product.Sumproduct =SUMPRODUCT(A2:B4, C2:D4) Multiplies all the components of
thetwo arrays and then adds the products
Date Value
EDATE
DAY360
=DAYS360(A2,A3) Number of days between the two dates, based on a360-day year
MONTH
HOUR
Minute
Second
Time
Time Value
Today
=Today()
Weekdays
=WEEKDAY(A2) Day of the week, with numbers 1 (Sunday) through 7(Saturday) (5)=WEEKDAY(A2,2)
Day of the week, with numbers 1 (Monday) through 7(Sunday) (4)=WEEKDAY(A2,3) Day of the week,
with numbers 0 (Monday) through 6(Sunday) (3)
Weeknum
=WEEKNUM(A2,1) Number of the week in the year, with a week beginning on Sunday
(11)=WEEKNUM(A2,2) Number of the week in the year, with a week beginning on Monday (10)
Char
Clean
Find
=FIND("M",A2) osition of the first "M" in the string (1)=FIND("m",A2) Position of the first "m" in the
string (6)=FIND("M",A2,3) Position of the first "M" in the string , starting with the third character (8)
Exact
Fixed
=FIXED(H9,2,FALSE) Round off the decimal places and put comma for thousand
Lower
Dollar
=DOLLAR(A2, 2) Displays the first number in a currency format, 2 digitsto the right of the decimal
point ($1,234.57
Search
=SEARCH("e",A2,6) Position of the first "e" in the first string above, starting at the sixth position (7)
Upper
Power