- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Conditional Formatting
I have data that contains different lots and reps and then time stamps.
I want all of the data from the same lot/rep to be divided by the final time stamp.
How would I do this in the formula section of a column?
1 ACCEPTED SOLUTION
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: Conditional Formatting
Col Max() with byvars (lot and maybe rep, depending on your data) should work.
Names Default To Here(1);
dt = Open("$SAMPLE_DATA/Big Class.jmp");
dt << New Column("f", numeric, continuous, Formula(
:height / Col Maximum(:height, :sex)
));
-Jarmo
2 REPLIES 2
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: Conditional Formatting
Col Max() with byvars (lot and maybe rep, depending on your data) should work.
Names Default To Here(1);
dt = Open("$SAMPLE_DATA/Big Class.jmp");
dt << New Column("f", numeric, continuous, Formula(
:height / Col Maximum(:height, :sex)
));
-Jarmo
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: Conditional Formatting
Thank you, worked perfectly.