I’ve added DNA match data to Memory Keeper (example importing 23andme DNA match file). I’m now writing some macros to review / report data. Two of these macros return a list of list people tiddlers, one a paternal list of tiddlers, the other maternal. The list shows know paternal/maternal Haplogroups from DNA data.
<$macrocall name=“GetPaternalListHaplogroups” person={{!!title}} />
This macro would be used on every person tiddler (in an ViewTemplate). It would return something like:
[[Smith, John]] [[Smith, William]]
The list of tiddlers the macro returns I now want to use in a list filter. I could do this if I could get the results in a variable.
In similar macros I had saved the results to a temporary tiddler. I was trying to avoid that here as it would potentially generate numerous temporary tiddlers.
How can solve this? Thanks,
Craig