This trivial case is reduced from a much bigger example. ``` Summarize( [{Value:1,Sixteen:1}], Sixteen, Dec2Hex( Sixteen, 3 ) As LevelOne ) ``` results in runtime errors in the column LevelOne, while this does not: ``` Summarize( [{Value:1,Sixteen:1}], Sixteen, Dec2Hex( First(ThisGroup).Sixteen, 3 ) As LevelOne ) ```  Using Text instead of Dec2Hex results in a hang in the REPL. It may be thinking that Sixteen is a table?