In ArcGIS you have the following window that allows you to visualize your numeric values in your attribute table in a diffrent manner. (Sorry the Image is in German)
In the example numeric values will be rounded to the 3rd decimal number and the alignment will be left. This does not change the data, it is simply represented differently in the attribute table. in ArcGIS you could also set the settings to show the data in scientific style or in fractions
I would love to do this in QGIS as well. To tell QGIS to represent the data with a max of 2 decimal numbers but actually use all decimal numbers when computing.
Is this somehow possible?
I'm using QGIS 3.4.13
-
which attribute table do you want to reformat? in the print layout you can apply any function you like (e.g. round() )Ian Turton– Ian Turton2020年02月11日 11:51:09 +00:00Commented Feb 11, 2020 at 11:51
-
I mean the attribute table in the project windowDGIS– DGIS2020年02月11日 12:39:43 +00:00Commented Feb 11, 2020 at 12:39
1 Answer 1
You're able to display not the original column but a virtual field based on your original colum and then use something like the following :
round(my_column[,places=0])
-
2hmm yes that would sort of work but its not nice to create a new field, eventhough its just virtual. There is no handier way?DGIS– DGIS2020年02月11日 12:50:57 +00:00Commented Feb 11, 2020 at 12:50