Hello @Roland Pendon.Try the ReplaceRegex() function.
ReplaceRegex(column_name,match_expression,replacement_expression)
You could write something like ReplaceRegex(column_name,"*\n*","* *")β
I used it once upon a time, and can't quite remember the syntax, but it's worth trying/experimenting with.
Apptio's (comprehensive) help file points to
Regex Cheat Sheet and to
https://regex101.com(Later)
I run a small experiment and it worked:
- I loaded an Excel file with a single column and a single row, where I had forced a <CR> with <ALT><ENTER>:
My Column |
this column has 2 lines |
- I then added CleanColumn=ReplaceRegex(My Column,"\n"," | ")
- This is what I got:

I selected the solid bar for visibility.
------------------------------
Regards, Guillermo
------------------------------
Original Message:
Sent: 09-06-2021 01:44
From: Roland Pendon
Subject: formula function to replace carriage return value from a string.
Hi guys
are there any function or steps to remove carriage return formula from a string?
#ApptioforAll