RAVINDRA'S BLOG
Formula
- These are used to make calculations and make different values in one place.
- Excel is an sheet to store data in table format.
- Its supports all types of data
- Boolean
- Text
- Numbers
- Date/Time
- There are may formulas in excel.
- From them below are few.
- To add values of cells.
- =sum(value1,value2,value3).
- To count total cells.
- =count(number1,number2,....) (To count numbers)
- =countA(number1, number2,number3,....) (To count count characters).
- To know the maximum/largest/highest value.
- =Max(value1 : valuen).
- To know the minimum/lowest/smallest value.
- =Min(value1 : valuen).
- Index is used to refer same cell value / details in other cell.
- Below Image, I used Index in order to show the lowest and highest product value with product name.
- =Index(array,row name ,column name).
- To equalize to different columns,of same row.
- Below Image, I used Match to equalize product and cost.
- To calculate the average of sum numbers.
- =Average(value1 : valuen).
- To enter today's date.
- =Today().
- To multiply two different cells
- =cell1*cell2.
- To merge two cells into one cell.
- =concatenate(cell1,cell2).
- To count number of days between two dates.
- =days(enddate,startdate).
- To count number of day leaving holidays.
- =Networkdays(startdate,enddate). (With fixed two week ends).
- =Networkday.intl(startdate,enddate,weekends,holidays)(wih custom holidays and weekends).