Jump to content
Claris Engage 2025 - March 25-26 Austin Texas ×

This topic is 4810 days old. Please don't post here. Open a new topic instead.

Recommended Posts

Posted

Is there a way in filemaker to calculate angle of slope from rise & run?

post-60031-0-19115200-1318384087_thumb.j

Posted

Thanks Comment for the wikipedia link.

What I was really hoping for was that somebody could help me with the code for this problem.

I'm a cabinetmaker, not a mathematician. I do, however, need to be able to build angled cabinets from time to time and would like to be able to do this without having to actually learn trigonometry.

Posted

Create number fields Run and Rise. Create a calculation field angle = Atan(Run/Rise)*57.2958.

(the 57.2958 is required because the atan function in FileMaker returns the angle in radians.)

If you only know the length and run substitute Asin(Run/Length) in the above calc. If you only know the length and rise, substitute Acos(Run/Length)

Posted

Or, putting them all together, angle =

Case(

not IsEmpty(Run) and not IsEmpty(Rise); Atan(Run/Rise)*57.2958;

not IsEmpty(Run) and not IsEmpty(Length); Asin(Run/Length)*57.2958;

not IsEmpty(Rise) and not IsEmpty(Length); Acos(Rise/Length)*57.2958;

)

Posted

(the 57.2958 is required because the atan function in FileMaker returns the angle in radians.)

How about:

Degrees ( Atan ( Run / Rise ) )

I'm a cabinetmaker, not a mathematician. I do, however, need to be able to build angled cabinets from time to time and would like to be able to do this without having to actually learn trigonometry.

IIUC, this is more about designing than building - and I'd consider basic trigonometry as one of the required skills.

Posted

Degrees ( Atan ( Run / Rise ) )

Another FM function I didn't know existed! Thanks.

This topic is 4810 days old. Please don't post here. Open a new topic instead.

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.