Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations derfloh on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

I need Help badly. 1

Status
Not open for further replies.

shekurbuti

Programmer
Feb 11, 2004
1
US
Hello,

I have a report in Crystal Reports 8.0 that scores projects.
(examples: project 10201 = 20 points, 10201a = 20 points).

I need to write something that changes this to all projects without a letter of the alphabet is = 20 points and any project that ends with a letter of the alphabet is = 10 points.
(example: project 10201 = 20 points, 10201a = 10 points.

Any ideas?

Thanks in advance!!
 
Try using the IsNumeric funtion in a formula:

if IsNumeric({table.field}) then 20 else 10

-dave
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top