Write Cell not working with this formula

Hello,

I need to identify a column in Excel, so cell “I1” and write “Month”; this works perfectly.
Then in cell “I2”, write a formula, that will get the month value from a string in column “H”.

This is the formula:
“=LEFT(H2;FIND(”/“;H2-1)”

No matter what I try, I always get 1 of 2 errors:
In the Input:
image

When I correct the error above with extra quotes, when it’s running it says that "the range does not exist "

Can someone help me, and explain why this happens please?

1 Like

@Andretgf First, that doesn’t appear to be a valid formula. Second, you should have two double quotes around the match character in the find formula

"=LEFT(H2,FIND(""/"",H2)-1)"

I think above is what you are going for.

2 Likes

Thank you!

I totaly forgot to quote, the quoted text.
Also… I was using “;” and you used “,”.
I double checked my Excel, and it’s writting “;”, which means that somehow UiPath changes “,” into “;”.

I readed that somewhere, but formula was never working, so I didn’t applied that to troubleshoot.

Anyway, is working now, thank you!

1 Like

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.