I have text property with value 1/2/3 I have to remove 2nd / from left so that my result should be 1/2 how to achieve this??
my data is not in Csv it’s a text property
I have text property with value 1/2/3 I have to remove 2nd / from left so that my result should be 1/2 how to achieve this??
my data is not in Csv it’s a text property
@TSAIKUMAR You can use below function to achieve
@whatComesBeforeLast(“1/2/3”,‘/’)
@Koti Raja Thanks it worked
thanks it worked