Default value in a table:  Is it possible, in a table, to put a default value in a column ?

It is possible to put default values in table cells. Exmple in VA01:

Default cell[All items,SU,1] "PC"
Default cell[All items,SU,2] "PC"
Default cell[All items,SU,3] "PC"
Default cell[All items,SU,4] "PC"
Default cell[All items,SU,5] "PC"
Default cell[All items,SU,6] "PC"
...

To avoid syntax error messages for non-existing rows, one could use the notation

if not cell[All items,SU,1]
goto end_default
endif
Default cell[All items,SU,1] "PC"
if not cell[All items,SU,2]
goto end_default
endif
Default cell[All items,SU,2] "PC"
...
...
label end_default

(With InputAssistant, you can do it in a more elegant way, using a row index, and handling a variable number of table rows.)