07-04-2025, 06:24 PM
I'm still working on implementing your latest suggestion using _TRUE and _FALSE. I have never factored these constants in my past algorythms. Unfortunately they are giving me some angst. Seems I'm getting an Out of Range error for assigning a value of _TRUE to the data_array array. I think it is because we have dimensioned it with positive integers whereas _TRUE would be -1. So, it would appear I should be dimensioning data_array as (-1 to 100, 1 to total_lines) but this would bring in an index of zero which I suppose would then be _FALSE or would it simply be a "0" index. I will often use a "0" index to store other info like the sum total of 10 integers on one line of the data. Is there a way to keep the _TRUE constant without triggering the Out of Range error??

