@TheMostLostStudent wrote:
I'm trying to combine multiple ASCII characters to form a large number.
(sorry, cannot see your VI, on LabVIEW 2020 here on my current computer)
I guess the problem is with your definition of "large number". If it is larger than 18446744073709551615 (max for U64), you cannot represent it using a numeric datatype and you need to decide how the output is shown (array of single digit numbers, just a string with characters 0..9?)
You also probably need to validate the input to generate an error if any of the values is not in the range A..J.
In any case, the following will work for any string up to 2147483647 characters in length, assuming that the input is clean. (given sufficient memory).