Hello,
I've been struggling with recording and coding a journal in VB that will export an entire assembly's expressions to an excel spreadsheet in a certain format.
The expressions are scattered across the assembly structure and describe hole location and diameter, but they are all unique and numbered sequentially: H1, D1, X1, Y1, Z1, H2, D2, X2, Y2, Z2, H3, ... and so forth.
H1 is a string value of either "L" or "R"
X1, Y1, Z1 and D1 are all integer of measurement length
For the time being, I'd like to create a journal that can export the expressions to a spreadsheet grouping the numbers sequentially in rows top-to-bottom. The columns should contain from left to right X, Y, Z, H, D - values.
I've only gotten as far as figuring out recursive functions to run through the assembly before realising this is a bit larger than anticipated.
Can anyone help me, please?
Cheers.