Advertisement
Guest User

Untitled

a guest
May 29th, 2015
227
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.67 KB | None | 0 0
  1. # select month from a date (for publishing month - useful for displaying things over time or analysing trends.). Change "DATEVALUE" to the cell reference you want to look the month up from.
  2. =CHOOSE(MONTH(DATEVALUE),"January","February","March","April","May","June","July","August","September","October","November","December")
  3.  
  4. # banding expectors. change the values in the If statements to change the bandings.
  5. =IF(AA2>100000,"Super Super BB",IF(AA2>60000,"Super BB",IF(AA2>36000,"BB",IF(AA2>25000,"Strong Core",IF(AA2>17000,"Core",IF(AA2>8000,"UN","Dog"))))))
  6.  
  7. # for spliting out "new" and "old" commissioning systems
  8. =IF(COMMITDATE_CELL>DATE(2013,10,1),"New System", "Old System")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement