Alex said: Looking to make a spell macro, can I do this by calling them from the character sheet? Not able to figure out the numbering aspect for @{repeating_spells_$0_cast-macro} in the same column. Given "$X", X will represent the repeating row number you are trying to reference. Before roll20 started creating unique id's for each repeating item, you had to include a row number to pull attribute data from a repeating entry. This can be problematic since you can rearrange repeating entries. If you are using $0 in your macro, it will always pull from the first row(row numbers start at 0 btw) of the repeating section. $1 =row 2, $2=row 3, $3=row 4, etc. id's are much better. e.g. @{repeating_spells_-lqsqslmifquf6hkrv0o_cast-macro} since the id never changes. Some sheet's make the id available on the sheet, otherwise you would have to use the browser's inspect element feature to try and discern the id from the data-reprowid entry. Apologies if I made this overly complicated. ;-P