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 John Tel on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

select case

Status
Not open for further replies.

Dukester0122

IS-IT--Management
Mar 18, 2003
587
US
i have a formula but everytime i save it i get an error.

select case {table.001}

case "PD10", "PD10-80"
FORMULA = 'PD'

case "CX10"
FORMULA = 'CX'

END SELECT
 
In Crystal syntax it would be:

select {table.001}
case "PD10", "PD10-80" : 'PD'
case "CX10" : 'CX'
default : ""

-LB

 
maybe i was using the wrong formula then because what i want to do is group "PD10" and "PD10-80" to 'PD' and "CX10" to 'CX'.

which formula do i need to use?
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top