Validar celdas y pegar si aplica

Buena tarde:
quiero molestarlos necesito validar si una celda de excel esta vacia y pegarinformacion si no lo esta bajar y pegar en la que si este vacia

@Jose_Amilcar_Monroy_Campo

Welcome to the community

Please be more specific and elaborate

If everytime you want to append or add the data in excel in the next rows then you can directly use append range activity

Cheers

con gusto lo que necesito es: por ejemplo tengo un dato en un get text y quiero que valide si una celda de excel esta llena o vacia antes de pegar la informacion … si esta vacia que lo pegue pero si esta llena que baje una celda

@Jose_Amilcar_Monroy_Campo

Perfect…

Instead of writing to excel directly and checking if cell is empty or not…we can directly use append range activity which automatically appends at the last empty row of the excel…

For that just create a datatable with single column using build datatable

Then once text is extracted use a add data row and add the extracted data in item array field use {stringVariable}

Then use append range with the datatable as input

Cheers

Cheers