Back to zzTakeoff Community Channel LogoQ & A
Kevin O'Brien
2h 31m

Is there a list of formula types available for zz

I am just wondering if there is a round function I can use in formulas but also what other functions are available beyond + - / * if ?


([Segment count]*2)+if([Linear:m]<2.4,0,([Linear:m]/2.4))


This formula is counting the ends of each board but I also want to count the joints if the maximum board length available is 2.4, anything over 2.4 gives me a fraction but I only want to count multiples of 2.4 over 2.4 , that is where I thought the round function might help

0
Steve Golubov 38m 13s

Hi Kevin,

Try this formula

([Segment count]*2)+if([Linear:m]<=2.4,0,floor([Linear:m]/2.4)-1)


The formula counts 2 ends per segment, then adds the number of joints required based on 2.4m board lengths.

Joints are calculated by dividing the total length by 2.4m, rounding down to whole boards, and subtracting one to get the number of joins between boards.

Hope this helps

Kevin O'Brien 31m 7s

Thank you!


That works but not until the linear gets to 4.8 then is ok

You must be logged in to post replies. If you don't have an account you can signup here.