Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
here is my single table
LOAD * INLINE [
id,F1, F2, index,flag
id1,11, 21, 0,0
id2,12, 22, 1,0
id3, 13, 23, 2,0
id4,13,24,3,0
];
I try modify filed vales, and doesn't work .
sub test
ActiveDocument.Fields("id").SetInputFieldValue 0, "test"
end sub
No error messages
macro just stops at the SetInputFieldValue line
???
Thanks
Vlad
Did you have
inputfield id;
before the load of the table?
magic!
Thanks