Renaming cells
Hello,
I'm trying to renaming specific cells after a filter was applied in in a different column. Here is the script that I came up with:
dt = Current Data Table();
df = dt << Data Filter(
Add Filter(
Columns( :"Sample/Control" ),
Where( :"Sample/Control" == "Sample" )
),
);
dt << Go To ( :"Control ID");
I'm only missing the last step, which is to rename the specific cells that are selected. I c...