Oi pessoal!
Como eu posso fazer para verificar se a linha está vazia e atribuir isso a uma condição?
Na prática seria:
Se a coluna PDF não for vazia e a coluna Status for vazia, rodar o robô.
Hi guys!
How can I check to see if the line is empty and assign it to a condition?
In practice it would be:
If the PDF column is not empty and the Status column is empty, run the robot.
.Trim.Equals(“”) should work fine unless some of the values are null. If you have null values in the table, it’s safer to use String.IsNullOrWhiteSpace(myStr)
String.IsNullOrWhiteSpace(ColumnStatus) And String.IsNullOrWhiteSpace(ColumnPDF)
Thank you, one condition worked well.
But, now I have a problem.
The objective of the project is to make the robot read all the files in a folder and Input these files in SAP. But I need it to read, but only write the file name in SAP if the PDF column is not empty AND if the Status column is empty. That is, I want it to skip everything that has the status filled in and start running the robot only with the empty status line and the PDF one filled in.
Obrigada, a condição funcionou bem.
Mas, agora estou com um problema.
O objetivo do projeto é fazer com que o robô leia todos os arquivos de uma pasta e faça o Input no SAP desses arquivos. Mas eu preciso que ele leia, mas só escreva o nome do arquivo no SAP se a Coluna PDF não for vazia E se a coluna de Status for vazia. Ou seja, eu quero ele pule tudo que tiver o status preenchido e comece a rodar o robô apenas com a linha de status vazia e a de PDF preenchida.