the problem is that tabfindincol uses spaces in its string pattern as its delimiters, so you are essentially searching for “Arial” or “Black” as $V expands. the way around it is to force tabfindincol to accept $V as a single argument, so using
will give you what you want. the difference is passing in
tabfindincol("A","Arial Black","rc",0,0,"forward")
or tabfindincol("A","'Arial Black'","rc",0,0,"forward")
since in Touch, we sometimes want $V as multiple arguments and sometimes as just one, and there is no way to tell in advance, I don’t forsee a more intuitive solution any time soon. hope this helps.