Newb Question - Basic Sequencing in a column
I'm a beginner in JMP and coding as a whole. I'm trying to figure out how I can make sequence of 0, 25, 50, 100, to repeat 8 times.
I tried Sequence(0,100,25,8) and obviously 75 shows up as well.
And I cannot for the life of me figure it out.
Chatgpt gave me the following code:
If(Mod(Row(), 4) == 0,
0,
If(Mod(Row(), 4) == 1,
25,
If(Mod(Row(), 4) == 2,
50,
If(Mod(Row(), 4) =
...