Is there a way to see all of the different values in each field?
Try Vector => Analysis Tools => List unique values
Maybe another way:
press
Open Field Calculator
button in the "Attributes Toolbar" to open the Field Calculator;find and select your
Land Type
column underFields and Values
node in the tree underSearch
textbox, then pressAll Unique
button on the right.
To generate a comma separated list of all categories, you can use this expression:
concatenate_unique ( "landuse", concatenator:= ', ' )
You might want to add a condition like if ( "id" = 1, [expression], '')
(substitute [expression]
with the expreesion from above) to create the list only in one row and not in all of them to avoid excessive calculation of repeating values.