hello friends i have an excel sheet and im trying to read that but im not able to read manuf date properly. there is some formula present there and it is not getting extracted as date.
There are a couple of reasons why you might not be extracting the actual value from a formula column in UiPath. Here’s what you can check:
UiPath reads formula text, not calculated value:
By default, the “Read Range” or “Read Cell” activities in UiPath return the formula itself, not the calculated value.
Solutions:
Use Excel Application Scope: Wrap your data reading activities (like Read Range or Read Cell) inside an “Excel Application Scope” activity. This ensures Excel recalculates formulas before UiPath reads them, providing the actual values.
Write Formula Output to Another Cell: In your Excel sheet, use a helper column with a formula that references the original formula cell. This helper column will display the calculated value. Then, use UiPath to read the data from the helper column containing the actual values.
Here are some additional resources that you might find helpful:
In read range activity properties check the Preserve format option box.
Or
Copy the entire data and do paste special over there to get the exact values.