Hi @Muzzè,
No worries! I assume you can reproduce the first solution with the combined column of Treatment and Fertilization. The Fit Model step was just fitting the model with the only the combined factor column as your only model effect.
The second solution with the custom interaction you can create using a column formula. Note, I also created the main effect columns in coded units in the table I sent you so you can see how JMP is parameterizing those effects behind the scene, but it's not necessary to do that. You can create just the custom interaction column.
1. Create a new column, name it something like "Mowing*Fertilizer".
2. Right-click on the column header and select "Formula"
3. Create a formula that returns a value of 1 when Treatment = "Mowing" and Fertilization = "y", 0 otherwise. You can copy and paste the following right into the formula editor:
If( :Treatment == "Mowing" & :Fertilization == "y",
1,
0
)
4. In Fit Model, select the following for your model effects: Treatment, Fertilization, and your custom interaction column. Select your response and press Run.
Note: JMP is not going to recognize your custom interaction column as an interaction, so the profiler will be pretty much worthless as it will allow the value of Mowing*Fertilizer to vary independently of Treatment and Fertilization.
-- Cameron Willden