Try to pass Min formula from uipath to excel

Hi i am trying to pass Min formula from uipath to excel cell and uipath say range does not exist .
I use write cell and =MIn(‘SheetName’!D4;E4) example.
What range does not exist ?
The ‘SheetName’!D4 and E4 have Value .

Any suggestions
Thanks

The range you passed is incorrect.
Try the following -

=Min(‘SheetName’!D4:E4)

1 Like

Hi @pavlou_antwnis,

The formula should be like this =MIN(Sheet1!A54,Sheet1!B54) .

And how you are passing the formula to excel?

You need to pass the formula as…

image

1 Like

Thanks for answer but is not range is ‘SheetName’!D4 cell and E4 for current sheet cell
is to numbers is not a range

Then

=Min(‘SheetName’!D4,‘SheetName’!E4)

Thanks @KarthikByggari is not =Min(‘SheetName’!D4,‘SheetName’!E4)
but is =Min(‘SheetName’!D4;‘SheetName’!E4)

1 Like

‘;’ is in the latest versions of Excel.
But for old versions of Excel ‘,’ is used.
Glad that you found the solution.

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