Jump to content
View in the app

A better way to browse. Learn more.

FMForums.com

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

NORMSINV probability function [recreate from Excel]

Featured Replies

I'm looking for a custom function (or help with a formula to build one) for the Excel probability function NORMSINV [ inverse of the standard normal cumulative distr]. There is one out there for NORMSDIST. But I need the inverse function. Not knowing much about probability functions, I don't know if I can somehow make that one work? Has anyone run across the NORMSINV function in FileMaker?

This is an approximation, adapted from Abramowitz and Stegun, Formula 26.2.23:

NORMSINV ( p ) =


Let ( [

q = Case ( p < 0.5 ; p ; 1 - p ) ;

t = Sqrt ( Ln ( 1 / q^2 ) ) ;



c0 = 2.515517 ;

c1 = 0.802853 ;

c2 = 0.010328 ;



d1 = 1.432788 ;

d2 = 0.189269 ;

d3 = 0.001308 ;



c = c0 + c1 * t + c2 * t^2 ;

d = 1 + d1 * t + d2 * t^2 + d3 * t^3 ;

x = t - c / d

] ;

Case ( p < 0.5 ; -x ; p = 0.5 ; 0 ; x )

)

Create an account or sign in to comment

Important Information

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

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.