Hi @VV7 ,
As you have 'Year' field data type as integer, the value will be displayed with comma separator for thousands in UI. (Example, 1,000,000 for 1Million). So as your value is 2006, it display as 2,006.
Instead you can store the year field as string in schema. So that you can view the value a...