functions for custom checks

Moderators: Moderators, Tech Support

Post Reply
LeeEllen
Posts: 4
Joined: Tue Aug 15, 2006 7:11 am

functions for custom checks

Post by LeeEllen »

I can't find a list of the functions available for editing fields on custom checks - mainly a description of what each function does.

I need a function that will "TRIM" an amount field. I tried TRIM, but it didn't work, so there must be a different function to trim blanks from a numeric.

Can someone help?

Lee-Ellen

Zaphod
Program Development
Program Development
Posts: 834
Joined: Tue Sep 02, 2003 12:48 pm
Location: PowerChurch Software
Contact:

Post by Zaphod »

A numeric field won't have spaces in it. Are you trying to line up currency fields? If so, there's a setting you want to use to right-align the field. That's a property you set, not a function on the value. Right click on the field to access the properties page. You may actually have to make it a character field in order to right justify it, but that's also a setting you can click.
PowerChurch Software Technical Support
(800) 486-1800
http://www.powerchurch.com/

LeeEllen
Posts: 4
Joined: Tue Aug 15, 2006 7:11 am

Post by LeeEllen »

I'm building a text string to go in the info line under the memo line on a custom check. This is what I want to do:

TRIM(DescLine1) + " " + TRIM(Amt2Line1) + ","

When I do this, there is a huge amount of space between the DescLine1 and the Amount - I assumed there were leading spaces in front of the Amt. I would like to see the DescLin1 then one blank space, then the amount then the comma.

Any suggestions for me?

Zaphod
Program Development
Program Development
Posts: 834
Joined: Tue Sep 02, 2003 12:48 pm
Location: PowerChurch Software
Contact:

Post by Zaphod »

Ah, try ALLTRIM() instead of TRIM().
PowerChurch Software Technical Support
(800) 486-1800
http://www.powerchurch.com/

Post Reply