How to append data to excel cell

Is there any directly activity to append data to excel cell ? Write value is overwirtig but I need to append values to existing data in specific cell. Please help me.

how about Append Range activity

Nothing direct as far as I know, but you can ReadCell, then WriteCell(old value + new value).

Thanks. In this way, I’ve implemented since i need to separate existing value with new value using semi colon.