Example a cell data is ( "W. jessy B., jessy B., jjessy pager, Ljessy" ) My Question: I want to modify "jessy B." to become "jessy CC." and keep all other info same. Please do not change "W. jessy B." Thanks / Regards
Another alternative, something like: Dim CellData = "W. jessy B., jessy B., jjessy pager, Ljessy" Dim cells() = Split(CellData,", ") cells(1) = "jessy CC." CellData = Join(cells, ", ") Code (markup):
ur question is not clear what do u want...do u want to update the cell directly in to database or by using querey