When I select desired rows through distributions, how to quickly batch input “Group A” into Group column?
Thank you!
This little script will do it
names default to here(1);
dt=current data table();
:Group[dt<<get selected rows] = "Group A";
Interactively you can also do the same very quickly.
This little script will do it
names default to here(1);
dt=current data table();
:Group[dt<<get selected rows] = "Group A";
Interactively you can also do the same very quickly.
Wonderful! Thank you so much!