Few more options
Create summary table
After you have the summary table, you can click on the stddev column and hold mouse down for some time. This allows you to "pick" the column and drop it to your original table
You could also have used Update with the summary table
You can create similar table using Tabulate (note that id is nominal)
Then from red triangle, make into data table
you can then use Update (or join) to get the results back to your table.
There are also many scripting options, here is one using Summarize()
Names Default To Here(1);
dt = Current Data Table();
Summarize(ids = by(:ID), stddevs = Std dev(:result));
show(ids, stddevs);
// ids = {"12345", "23456", "34567"}; // note that these are strings even if they were numbers originally
// stddevs = [0.1, ., .];
-Jarmo