In a table scan, a cell with range(175,245,70) is not expanded, resulting in Set('X', 'range(175,245,70)') which then fails.
Reason: The range has just one element, so the table doesn't "grow", and thus the original cell value is used.
That specific example is likely a user error, they wanted to use range(175,245,70) to get [ 175, 245 ] and not just [175], but the table scan should still expand the ill-configured range.