Tuesday, 27 March 2012

Calculate first day in month relative to a date

Type:   =EOMONTH(A1,2)+1

Where A1 represents the date, 2 represents the number of month from that date.
Calculate last day in month relative to a date

Type:   =EOMONTH(A1,6)

Where A1 represents the date, 6 represents the number of month from that date.
Calculate calendar quarter from a date - Excel

Type   =INT((MONTH(A1)-1)/3)+1  

Where cell A1 contains the date
Calculate financial quarter from a date - Excel

Type   =MOD(CEILING(22+MONTH(A1)-6-1,3)/3,4)+1   

Where cell A1 contains the date, 6 (month 6) represents last month of the financial year.
Format cell as number with no decimal places.
   

Sunday, 25 March 2012

Insert current time - Excel

Type   =NOW()   Volatile formula updates each time refresh data.
    
Insert current date - Excel

Type   =TODAY()   Volatile formula updates each time refresh data.
     

Friday, 23 March 2012

Break links - formula links to external workbooks - Excel

Menu   Data  >  Edit links  >  Break link  
 
Find links - formula links to external workbooks - Excel

Type   Ctrl F   then search for   [  or  ]
Identifies formula links to external workbooks by locating cells containing square brackets [ ] .
Filename & path displayed within a cell - Excel

Type   =CELL("filename")














Thursday, 22 March 2012

Comment within a formula - Excel

Type   +N("comments")   at the end of the formula
 
Generate random number - Excel

Type   =rand()