Hi,
I want to remove   from my rtf report. In my report, I get value from GridView and export it to rtf. The problem I have in my report is, null value or blank/no value is filled by  . For instance,
I would like to display like:
Company| Address | Contact | Country | Email
AAA LA 989877 USA aa@AAA.com
BBB CA 879989 bb@BBB.com
CCC 889977 cc@CCC.com
In my report is like:
Company | Address | Contact | Country | Email
AAA LA 989877 USA aa@AAA.com
BBB CA 879989   bb@BBB.com
CCC   889977   cc@CCC.com
Could you please tell me how to remove this   from my report and just display blank instead of this. I tried with Text.Trim(); But it doesn't work. Any idea, to solve this out, please. Thanks in advance to Stimulsoft team.
Regards,
Win
How to remove   from report
How to remove   from report
Hello,
As a way, you can try to use the following expression:
DataSource.Column.Replace(" ", "")
Thank you.
As a way, you can try to use the following expression:
DataSource.Column.Replace(" ", "")
Thank you.
How to remove   from report
Hi Aleksey,
Thanks, I tried the way you said and it worked.
Cheers
Thanks, I tried the way you said and it worked.
Cheers
How to remove   from report
Hello,
Perfect.
Have a nice day!
Thank you.
Perfect.
Have a nice day!
Thank you.