Okay, I saw one reply to an earlier post regarding rounding to the 1,000th but I haven't been able to get it to work:
1. Add 999 to your original field.
2. Truncate to a derived 2 digit integer field.
3. Multiply by 1000 with result in an appropriate size derived field to accomodate your largest possible answer.
What I did was: round( SUM("SYSADM"."PV_JOB"."ANNUAL_RT"+999) ,-3.5)
This works for most employees but some it doesn't round correctly. Ex: $21,166.00 rounds to $22,000 great. Another employee making $23,670.00 rounds to $25,000 bad, I need it to round to $24,000.
What am I doing wrong?
TIA,
Sarah
1. Add 999 to your original field.
2. Truncate to a derived 2 digit integer field.
3. Multiply by 1000 with result in an appropriate size derived field to accomodate your largest possible answer.
What I did was: round( SUM("SYSADM"."PV_JOB"."ANNUAL_RT"+999) ,-3.5)
This works for most employees but some it doesn't round correctly. Ex: $21,166.00 rounds to $22,000 great. Another employee making $23,670.00 rounds to $25,000 bad, I need it to round to $24,000.
What am I doing wrong?
TIA,
Sarah