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 don't remember it anymore ?

Featured Replies

  • Newbies

looking to get a total for a field (Expense Amt) when sorted by a field (Accounting Code ="C27"). c27 is the the code text input into the field "Account Code". After I get the format with this, I will do this for Account Code A01-A03, B01-B08, C01-C30, and thru D08-D05. None of the following seem to work. Please advise.

If((Accounting Code)="C27"),Sum(Expense Amt)

If(Accounting Code = "C27",Sum (Expense Amt),0)

If((Accounting Code)="C27",Extend(Expense Amt),0)

GetSummary(Expense Amt,(Accounting Code)="C27")

Sum (Expense Amt) , If (Accounting Code ="C27")

Assuming that you are using this as a calc in a calc field I would use the following:-

Case((Accounting Code)="C27",Sum(Expense Amt),0)

This would return the sum of expense amount if acc code = c27 or 0 otherwise. You can put as many other conditions as you would like to check for into the same calc and just leave the 0 at the end as the default eg:

Case(Accounting Code ="C27",Sum(Expense Amt),Accounting Code ="C28",Sum(something else),0)

The above should be placed in an unstored calc field with the result of number and it shouyld give you what you want

hth

Phil

You can use a summary report to do this. If you need to see it in browse mode, you can use GetSummary but you still need to create a summary field that totals your number, which you will need to reference in your GetSummary.

P.S. also remember to sort it by the break field which is your Accounting Code field.

Edited by Guest
Added PS

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.