Hi everyone
In one of my report I have text without space. Instead of space they have _ or -
So i'm using the function SUBTITUTE to replace it
With this I only replace _
So the question is, can I substitute with a single function the two characters?
The other solution that I found is kind of dirty (in my opinion): I do it with two functions. The first function replace the "_" and the second function use the text of the first one and remove "-"
In one of my report I have text without space. Instead of space they have _ or -
So i'm using the function SUBTITUTE to replace it
Code:
=SUBSTITUTE([nom_Projet]; "_" ;" ")
So the question is, can I substitute with a single function the two characters?
The other solution that I found is kind of dirty (in my opinion): I do it with two functions. The first function replace the "_" and the second function use the text of the first one and remove "-"