Home Claris FileMaker Design planning your FileMaker solution

Design planning your FileMaker solution

Design planning your FileMaker solution

Brought to you by http://www.filemakermagazine.com This video is part of a series.

Link to series
https://www.youtube.com/watch?v=HMD6ZWcu8_g&list=PLRS91FT1HGKX5hmRDsKAT0Y3qS0xItrCj

1 COMMENT

  1. Hi, here is a custom function to calculate golden ratio related to the grid:
    /*

    Name: Golden_Ratio ( number, grid, flip )

    Author: Thomas Siebert
    */

    Let ([
    phi = ( 1 + Sqrt ( 5 ) ) / 2 ;

    gold_hi = number / phi ;

    gold_hi_grid = Round ( gold_hi / grid ; 0 ) * grid
    ];

    Case ( flip ; number – gold_hi_grid ; gold_hi_grid )

    )

Comments are closed.