Column manipulation with changing content

Hello,
I have the following table

Name Info
Peter Mueller Row_00014
Frank Klein
Sabine Peterson XXXXX
Stephan Seibel Row_00015
Claudia Pastevka
Maja Pzybilla XXXXX
Sebastian Vogt
Kristina Kuhlmey FFM00
Hans-Peter Rosenberg FFZ00
Sybille Gross FFH00
Marion Surovy FFA00

and I want to change in column Info every content which begins with “Row_” into no content or a blank.
Can someone help me please?
Best regards,
Jürgen

Hi @juergen01,

String Manipulation:

regexReplace($Info$, "^Row_.*", "")

:blush:

3 Likes

Many thanks @armingrudd. It works.

1 Like

rule egine as an alternative

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.