Hi,
I have a tiddlywiki with multiple entries. I now want to assign a unique field value for every entry so that I can sort them in a particular way. Is there a way that I can do this with button or other batch orders. I searched and found something of creating a dictionary.
Say I select all entries with birthdays entered.
<$list filter="[has:field[birth_year]]">
Then I want to create a new field called "rankcode" for each entry, translating their titles to a unique 6-digit code in their, using the dictionary below
John Smith (Reno):BCD-75A
John Adams:5GH-6GB
Brian Kim:67A-300
Cris Stuart (NV):3ZH-UV5
I'd appreciate help on how to do this. I tried $action-setfield to assign one single value to one entry at a time, but don't know how to do this en masse using sth like a dictionary. Many thanks!