I am having an issue selecting a joined layer in the 'value' dropdown under graduated symbology to create a choropleth map. I joined originally the data from a csv file, but after I encountered this issue I redid it using the Add Delimited Text Layer option. I thought the issue could be occurring due to incorrect data type (string vs. numeric), so I used the to_real() function within the attribute table to change the data type of the particular attribute. I have referenced this post on the same subject. However, even after completing the change of data type, the attribute still does not show up as an option under graduated symbology. There is one NULL entry, could this have an effect? I am not sure what is going wrong.

Asked
Active
Viewed 149 times
1
Lydia
- 11
- 1
to_int(NULL)will give you NULL, you'd need something likeif("attribute" is NULL, 0, to_int("attribute")to transform NULL values into a 0. – LeoC Apr 14 '20 at 20:35sheet_targetin the dropdown list, onlyto_int(sheet_target)(and only if it is the active field - if you change to something else it will disappear from the list). I have tried it with nulls in the data and it should not affect whether it appears in the list or not. – she_weeds Apr 16 '20 at 07:08