Advertisement
Guest User

Untitled

a guest
May 29th, 2016
43
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.73 KB | None | 0 0
  1. if(
  2. Month( Attitude_presentation_date__c )>5
  3. &&
  4. Attitude_presentation_date__c>=
  5. (DATE(YEAR( Attitude_presentation_date__c ),9+1,01) - 1
  6. -
  7. MOD( DATE(YEAR( Attitude_presentation_date__c ),9+1,01) - 1 - DATE(1900, 1, 7), 7))
  8. ,1,0)
  9.  
  10.  
  11. +
  12.  
  13. if(
  14. Month( Attitude_presentation_date__c )<5
  15. &&
  16. Attitude_presentation_date__c<=
  17. (DATE(YEAR(Attitude_presentation_date__c ),4,01)
  18. +
  19. CASE( MOD( DATE(YEAR(Attitude_presentation_date__c ),4,01) - DATE(1900, 1, 7), 7), 0, 0, 1, 6, 2, 5, 3,
  20. 4, 4, 3, 5, 2, 6, 1,0))
  21.  
  22. ,1,0)
  23.  
  24. DATETIMEVALUE(
  25. TEXT(YEAR(Attitude_presentation_date__c))+"-" +
  26. TEXT(MONTH(Attitude_presentation_date__c))+"-" +
  27. TEXT(DAY(Attitude_presentation_date__c))+" "+
  28.  
  29. Start_time__c
  30. +":00")
  31.  
  32. -
  33. if( Date_NZ_Daylight_savings_on__c >0, 1/24*13,1/24*12)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement