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.

I want to modify my field

Featured Replies

(I gave it its subject back, though it's not very descriptive; it should be "Recreating Quickbooks" ???-)

Yes, I'm still alive. Somewhat. I've been creating an "eBase" type solution for a non-profit. Not really tricky, but lots of files.

I think you can do what you want. I saw, without getting into gruesome detail, that you had some extra fields in your Nominal Ledger, which you were trying to make work. That's more or less the method.

The trick you missed was to include the "plain" number field in the calculation. Here are the players:

Net

Gross

VAT

Also, normally:

_cNet = Gross - VAT

_cGross = Net + VAT

_cVAT = Gross - Net

For any given transaction, 2 of the numbers will be plain, and one is calculated.

Each file that feeds into this central file will have its own pattern for data entry, which must be enforced, because entering data in all 3 could leave 1 wrong. So the 3rd number is always only a calculation field, different fields in the portal for different files. No record in Nominal Ledger will have conflicting patterns on any given record.

Change the calculations to:

_cNet = Case ( not IsEmpty(Net), Net,

not IsEmpty(Gross) and not IsEmpty(VAT), Gross - VAT,

"")

_cVAT = Case( not IsEmpty(VAT), VAT,

not IsEmpty(Gross) and not IsEmpty(Net), Gross - Net,

"")

_cGross = Case( not IsEmpty(Gross), Gross,

not IsEmpty(Net) and not IsEmpty(VAT), Net + VAT,

"")

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.