Hi good morning
Im having an issue trying to read a cell that is number stored as text any idea? how to solve this issue
Hi good morning
Im having an issue trying to read a cell that is number stored as text any idea? how to solve this issue
Hi there @Fausto21,
As noted above, can you be more specific regarding your issue?
Are you struggling to retrieve the value from the element, if so, can you share the selector?
On the other hand, if you are struggling to get the value as a number-based datatype, you can simply parse post extraction, for example:
Integer.Parse(strExtractedValue)
With the parsing note, you should always TryParse first, ensuring it is a valid type.
Thanks in advance,
Josh