I need to read some values from an Excel file to paste them into an application.
Often, the underlying value has 5 decimal places while the formatted cell (and the application) take 4.
It now reads the underlying, 5 decimal-values and simply cuts it off at 4 when pasting in the app.
What I need from the bot is it reading the rounded 4 decimal value from the cell. (Just like it would when copy pasting manually).
How would I use that with a read range activity?
What I have now is:
Read Range (range includes doubles and date types)
For Each Row with and Assign with
TestString = TestString + row.item(0).ToString+ vbNewLine