[TABLE="width: 128"]
<tbody>[TR]
[TD="class: xl63, width: 64"]a[/TD]
[TD="class: xl63, width: 64"](e,f)[/TD]
[/TR]
[TR]
[TD="class: xl63"]a[/TD]
[TD="class: xl63"](g,h)[/TD]
[/TR]
[TR]
[TD="class: xl63"]b[/TD]
[TD="class: xl63"](x,y)[/TD]
[/TR]
[TR]
[TD="class: xl63"]c[/TD]
[TD="class: xl63"](x,y,z)[/TD]
[/TR]
[TR]
[TD="class: xl63"]c[/TD]
[TD="class: xl63"](j,k,l)[/TD]
[/TR]
[TR]
[TD="class: xl63"]d[/TD]
[TD="class: xl63"](m,n)[/TD]
[/TR]
</tbody>[/TABLE]
From the table above:
"a" can be matched with "e" or "f" or "g" or "h"
"b" can be matched with "x" or "y"
"c" can be matched with "x" or "y" or "z" or "j" or "k" or "l"
"d" can be matched with "m" or "n"
I need a macro that will expand out the options in the 2nd column into separate lines for each of the options. So instead of 6 lines, I need the output to be in 14 lines
What would be the easiest method for doing this?
<tbody>[TR]
[TD="class: xl63, width: 64"]a[/TD]
[TD="class: xl63, width: 64"](e,f)[/TD]
[/TR]
[TR]
[TD="class: xl63"]a[/TD]
[TD="class: xl63"](g,h)[/TD]
[/TR]
[TR]
[TD="class: xl63"]b[/TD]
[TD="class: xl63"](x,y)[/TD]
[/TR]
[TR]
[TD="class: xl63"]c[/TD]
[TD="class: xl63"](x,y,z)[/TD]
[/TR]
[TR]
[TD="class: xl63"]c[/TD]
[TD="class: xl63"](j,k,l)[/TD]
[/TR]
[TR]
[TD="class: xl63"]d[/TD]
[TD="class: xl63"](m,n)[/TD]
[/TR]
</tbody>[/TABLE]
From the table above:
"a" can be matched with "e" or "f" or "g" or "h"
"b" can be matched with "x" or "y"
"c" can be matched with "x" or "y" or "z" or "j" or "k" or "l"
"d" can be matched with "m" or "n"
I need a macro that will expand out the options in the 2nd column into separate lines for each of the options. So instead of 6 lines, I need the output to be in 14 lines
What would be the easiest method for doing this?