Skip to content

Instantly share code, notes, and snippets.

View jaccorens's full-sized avatar
💭
Loading...

Jacco Rens jaccorens

💭
Loading...
  • Heerhugowaard, Netherlands
View GitHub Profile
@jaccorens
jaccorens / fm_epoch_to_timestamp.txt
Created February 21, 2016 10:01
unix epoch timestamp to FileMaker timestamp
GetAsTimestamp ( ( GetAsNumber ( epoch ) ) + GetAsNumber ( Timestamp ("01/01/1970" ; "00:00:00" ) ) )
@jaccorens
jaccorens / fm_previousweek.txt
Last active August 29, 2015 14:07
Filemaker search variables for previous week
$currentDate = Get ( CurrentDate )
$searchStart = GetAsDate ( 7 * Int ( ( $currentDate + 7 ) / 7 ) - 13 ) // previous monday from today
$searchEnd = GetAsDate ( 7 * Int ( ( $currentDate + 7 ) / 7 ) - 7 ) // previous sunday from today
$searchRange = $searchStart & "..." & $searchEnd
//FileMaker formula