I'm trying to find an easy way to use one macro that lets me select the row number
storing a given feature, rather than having one macro for each item. At
first I was going to try this !setattr {{ --sel --replace --repeating_gear_-create_name|@{compendium|repeating_gear_$?{Row Number}_name} --repeating_gear_-create_quantity|@{compendium|repeating_gear_$?{Row Number}_quantity} --repeating_gear_-create_weight|@{compendium|repeating_gear_$?{Row Number}_weight} --repeating_gear_-create_cost|@{compendium|repeating_gear_$?{Row Number}_cost} --repeating_gear_-create_slot|@{compendium|repeating_gear_$?{Row Number}_slot} --repeating_gear_-create_special|@{compendium|repeating_gear_$?{Row Number}_special} --repeating_gear_-create_notes|@{compendium|repeating_gear_$?{Row Number}_notes} }} but
I remembered that attributes are parsed before queries. It ends up giving me this ...ETC. Is there a way
to specify the attribute in a way that let's the query be parsed first?
Or a different place to have the query in a way that would have a
similar function? The only idea I've had to workaround would be
using a drop-down queries, but that would mean not only having several
different queries in the same macro, but also having to update all of
them any time I add an item to my compendium sheet. Thanks in advance :)