Matches activity error

Hello Community,
I am having some problems with the Matches activity, it is giving some errors.

Hi,

Your input (CellValue) seems Null (Nothing).
So you need to check it or convert it to String.Empty as the following expression using Assign activity.

CellValue = if(CellValue is Nothing, String.Empty, CellValue)

Regards,

1 Like

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