Can anyone see what I’m doing wrong?
Hi,
Can you be more specific about what you are trying to do? or can you upload the workflow?
I’m trying to convert the data that I received from the image via ocr and translate it to int32 so that the data formatting is correct by the time it gets to excel.
If you use the variable type as String, it still should able to give the data. No need to convert it into Int
It will, but it still isn’t formatted right when it gets to excel.
If you want to write the array value in different rows you can use Array(0).ToString, Array(1).ToString where Array is the output value from get ocr text and type should be Array(Int32)
It writes one number in a cell like 26-in A1 and 154-in A2 likewise
Write Cell activity will accept input as String only but not other types of data.
Marine
The issue is because the write cell input argument takes only String value or variable so in that case mention like this
processedDoc.ToString
Hope this would help you
Cheers @BotMonkey
@Mamidi_Sravani @lakshman @Palaniyappan Thanks to all of you! As get further along with the program I’ll most likely have more questions. I’ll make sure to keep this post updated Cheers
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.