From web page to excel

Hello team.
I would like to ask how to solve it.
If I have on web page the value 0 will be written at excel in the column M “YES” and if it is another value will be written “NO”.
Thx for help.

0

Hi @lukas_dittrich

welcome to forum

You can use get text activity to extract the text and then check if it is zero or any other value by using if cindition as

output_text.Equals(“0”)
where output_text is the output from get text

then if the condition is satisfied, then u can use write cell activity to write accordingly “YES”

other wise “No” using write cell

Regards

Nived N

Happy Automation