Remove Special Charactors From Excel Report

Kau_147Kau_147 Member Posts: 84
Dear All,

I have created report in classic which is exported in Excel. Now I want to delete all the Special charators from 4-5 columns. Which is I tried but I am not able to solve.
Please help ASAP. ](*,)
Best Regards,
Kavita Mutha

Comments

  • SavatageSavatage Member Posts: 7,142
    What do you mean by special charaters?

    Do you just want to delete them or do you want to replace them?

    For example à to A?

    Else you can cleanup the field before exporting.

    txtCharsToKeep := 'ABCDEFGHIJKLMNOPQRSTUVWXYZ';
    "My Field" := DELCHR("My Field",'=',DELCHR("My Field",'=',txtCharsToKeep));
  • raveendran.sraveendran.s Member Posts: 119
    Savatage wrote:
    What do you mean by special charaters?

    Do you just want to delete them or do you want to replace them?

    For example à to A?

    Else you can cleanup the field before exporting.

    txtCharsToKeep := 'ABCDEFGHIJKLMNOPQRSTUVWXYZ';
    "My Field" := DELCHR("My Field",'=',DELCHR("My Field",'=',txtCharsToKeep));

    Nice Idea... =D>
    --
    Regards,
    Raveendran.BS
  • Kau_147Kau_147 Member Posts: 84
    Thanks for reply
    But I want to replace the Special Charactor with Space.
    For example :
    AccountNo. : HDFC/2012/15-12/001 (Remove the '-' and replace it with ' ' space).
    Like AccountNo : HDFC/2012/15 12/001
    Best Regards,
    Kavita Mutha
  • raveendran.sraveendran.s Member Posts: 119
    Find the position of the symbol and replace with Space
    --
    Regards,
    Raveendran.BS
  • Kau_147Kau_147 Member Posts: 84
    Thanks for the reply!
    This issue is resolved. \:D/ \:D/ =D>
    Best Regards,
    Kavita Mutha
Sign In or Register to comment.