Use the JMP function: Week of Year();
You will either have to create a new column with the above function as the formula for the column, or to replace the values within the same column the following script will do it: Assume that the target column is named......MyDate
Names Default to Here(1);
dt=current data table();
For Each Row(
MyDate=Week of Year(MyDate);
);
dt:MyDate << format("Best",5);
Jim