tkrowe Posted June 24, 2016 Report Share Posted June 24, 2016 I have a report that work great but i need some help with the JS... My field clean_title returns a number 1 for Clean and a 0 for Salvage. What JS would i uses to show Clean Or Salvage instead of 1 or 0 ? Thanks In Advance Quote Link to comment Share on other sites More sharing options...
MayMusic Posted June 29, 2016 Report Share Posted June 29, 2016 Try to add a calculated field and case statement: CASE WHEN [@field:FIELDNAME] = 0 THEN 'Clean' ELSE 'Salvage' END Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.