User-578610739 posted
Hi Smsavsani,
It is good to set this value in datatable in your .cs page. So nothing to worry at report side and no headache for what will come, why not show like that.
Still if you want in report side. then take one variable and remove (blank) string like
(use mid for get substring, INSTR for search and get index )
var left_part = MID(my_string, (INSTR(my_string, "(blank)")) ));
var right_part = MID(my_string, left_part
.len , (INSTR(my_string, "(blank)"))) );
return left_part + right_part
;
see link
http://stackoverflow.com/questions/2986812/using-substring-in-crystal-report
http://www.crystalreportsbook.com/Forum/forum_posts.asp?TID=9642