Is there a way to specify which column you want to extract from your Raster layer?
I'm assuming you're referring to the Extract Multi-Values To Point tool.I think by far the easiest way to do this is extract by the VALUE and then use the Join Field tool to copy over the field(s) you want from the input raster table. Another option is to use the Sample tool inside the Raster Calculator tool. This allows you to use the Lookup tool to get those values for the inputs. This will probably take longer than the first approach.samps = Sample([Lookup("grid1","field1"), Lookup("grid1","field2")], "samp_points", "out_tbl")
I discourage people from using raster attribute tables - there are both performance and data design reasons for this. Spatially complex data and attribute lookups can slow down overlays and complicate processing. Map algebra is much easier to read and write, and more powerful when the raster layers are just simple value grids with no attributes except VALUE and COUNT. If you need attributes, you can always join them back in when needed.