uio
(uipath test)
December 8, 2023, 7:20am
1
Hey All,
I have an Excel column named “Email” containing Email IDs in it. When there are multiple values in a cell, a comma is used to separate two IDs.
The field where I enter the Email IDs doesn’t allow to enter commas. But accepts semicolons.
How do I replace a comma with semicolon ?
Thank You.
Hi @uio
Excel Application Scope
- Read Range (output: DataTable)
For Each Row in DataTable
- Assign
- To: row("Email")
- Value: row("Email").ToString().Replace(",", ";")
Write Range (input: DataTable)
Hope it helps!!
1 Like
uio
(uipath test)
December 8, 2023, 7:25am
3
Thank you, it works perfectly.
system
(system)
Closed
December 11, 2023, 7:26am
4
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.