Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi everyone
is there a way to keep possible values in macro?
thanks for any ideas!
SUB KeepPossibleOnly
ActiveDocument.Fields("Stredisko.Popis").Select "B2B"
'FILE->File->Reduce Data->Keep Possible Values.
END SUB
Does ActiveDocument.ReduceData do what you want? If you have a selection before calling the function it behaves like Keep Possible Values.
Does ActiveDocument.ReduceData do what you want? If you have a selection before calling the function it behaves like Keep Possible Values.
Indeed, ActiveDocument.ReduceData will keep possible values.
If you want to remove all values from document you'd write:
ActiveDocument.RemoveAllData
Thanks, that's it. Is there any documentation where I can find this? Something like java api for java or msdn for C#
You can find helpful info in the APIGuide.qvw.
Under Automation Examples tab, search for object properties and you can find how to write them in the macros.
Thanks, that was what I looking for
thanks very usefull (specially when you are re generating data based on binary loads