Select attributes to make new raster issue

445
2
Jump to solution
12-09-2022 12:56 PM
TriciaBrockman
New Contributor II

Hello! I am trying to extract specific rows from a raster to make a new raster using the Extract by Attribute tool and I am having some issues. I am trying to extract all rows with values between 122 and 185, for example. When I try and build my query I use: "VALUE" BETWEEN 122 AND 185 and it keeps telling me that "An invalid SQL statement was used". I've tried this a number of different ways and keep coming up empty handed. Any help appreciated!

Or even if you have a better way of creating a new raster from selected attributes...

0 Kudos
1 Solution

Accepted Solutions
DanPatterson
MVP Esteemed Contributor

skipping between

( "VALUE" >= 122) AND ("VALUE" <= 185)

would be the next thing to try


... sort of retired...

View solution in original post

2 Replies
DanPatterson
MVP Esteemed Contributor

skipping between

( "VALUE" >= 122) AND ("VALUE" <= 185)

would be the next thing to try


... sort of retired...
TriciaBrockman
New Contributor II

Thank you! I was so frustrated with it.

0 Kudos