Skip 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.

Payroll calculation

Featured Replies

this has probably been asked in the past but I have not been aboe to find the answer in Archives.

How can I write a calculation that will automatically factor for overtime pay without having to have a second field for hours over 40?

In other words if Pay_Hours > 40, 40hrs at "X" rate, remaining hours, "X" rate X 1.50.

Thanks for any help you all can give.

Steve

Hi Steve,

Of course it isn't as simple as this. This doesn't account for weekends or holiday pay (double-time etc). It really is better to use another table because it adds to your flexibility. But, assuming you have an Hours field and a Rate field, here is one way:

Let ( [

base = 40 ;

OT = Hours - base ] ;

If ( Hours > base ; base * Rate + OT * ( Rate + Rate / 2 ) ; Hours * Rate )

)

LaRetta

How about:

hours * rate + Case ( hours > 40 ; ( hours - 40 ) * rate * 0.5 )

Create an account or sign in to comment

Important Information

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

Account

Navigation

Search

Search

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.