Forum Discussion
RanjanThammaiah
7 years agoHelper V
Measure column replace text
Hi All,
Can some one tell how to replace the value of Measured Column.
Below is the example.
I have created a measured column based one some formula, And there is text called "Oceania" i want to replace with blank from all the rows.
Regards,
Ranjan
Regards,
Ranjan
Measures and columns are two different things, but if you are talking about doing this in a calculated column, then you could use the Substitute function
eg
SUBSTITUTE( [Column1] , "Oceania", "", 1)
2 Replies
- d_gosbellSuper User
Measures and columns are two different things, but if you are talking about doing this in a calculated column, then you could use the Substitute function
eg
SUBSTITUTE( [Column1] , "Oceania", "", 1)
- RanjanThammaiahHelper V
Wonderfull.. Much appreciated.
Thanks