'Uipath Range does not exist

I have created a simple Write Cell task, but I get an error that the range does not exist even if it clearly exists. What could be the problem?

table

UiPath

The formula I am using is:

"=IF(AND((A2+B2)/2>70; OR(C2=""accepted""; D2=""accepted"")); ""accepted""; ""rejected"")"



Solution 1:[1]

In your case you may get that error for

1) having the wrong formula in write cell. (I tried the following and it works)

enter image description here

"=IF(AND((A2+B2)/2 > 70,OR(C2=""accepted"",D2=""accepted"")), ""accepted"", ""rejected"")"

2) having your excel file open when you run the robot.

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 NTP