Pattern by Relation
I am trying to create a pattern in only one direction using relations. I have read all the other post I could find about this topic and I could use some advice. The pattern increments will not be the same, I could use a pattern table but I want to use the dimensions in a relation and I cannot if they are in a pattern table. I also do not wish to create a family table of this model. Here is what I have tried to date, in the part relations I create an integer parameter,
If pattern_1 == 1
p47 = 4
endif
in the pattern relation table I have this
If pattern_1 == 1
if idx1 == 1
memb_i = 2.250
if idx1 == 2
memb_i = 3.000
if idx1 == 3
memb_i = 3.000
endif
endif
endif
endif
this results in this first member is correct, the second is on top of the first, the third is double the distance of the first and the fourth is also on top of the first.
I also tried
If pattern_1 == 1
if idx1 == 1
memb_v = lead_v + 2.250
if idx1 == 2
memb_v = lead_v + 5.250
if idx1 == 3
memb_v = lead_v + 8.250
endif
endif
endif
endif
this results in the first two members in their correct location but the third and fourth members on top of the first member. What am I doing wrong?

