You did convert correctly the variable to Int, but you’re comparing to 10, as string, not as a number
If Condition
CInt(Out_ExtractedValue) > 10
instead of
CInt(Out_ExtractedValue) > "10"
You did convert correctly the variable to Int, but you’re comparing to 10, as string, not as a number
If Condition
CInt(Out_ExtractedValue) > 10
instead of
CInt(Out_ExtractedValue) > "10"
Hello, the REGEX solution is the one that has worked for me, clarify that two modifications have been made to this file, which I put here in case anyone is interested.
Thank you all very much for helping me
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.