Hello,     So, I'm working on this parsing script - it is going well, but when I add the dynamic expanding row code, the entry is defaulted to expanded. (Yuck!) How do I set the rows to not expanded? (this is my last ditch attempt to get this working the way I want it to.) *This is alpha code, where I'm working to identify the map from the json data structure to the pf2e character sheet ...  o.get('id') = character id                         _.each(CharJson.build['languages'], (oLang)=>                         {                             // if value already exists do not add to character sheet (how to prevent collisions?)                             if (PathBuilderImporter.doesValueAlreadyExist(o.get('id'),oLang)===false)                             {                                 Attributecounter += 1;                                 PathBuilderImporter.replaceCharacterAttribute(o.get('id'),`repeating_languages_${o.get('id')}${Attributecounter}_toggles`, 'display,settings,');                                 PathBuilderImporter.replaceCharacterAttribute(o.get('id'),`repeating_languages_${o.get('id')}${Attributecounter}_language`, oLang);                                 PathBuilderImporter.replaceCharacterAttribute(o.get('id'),`repeating_languages_${o.get('id')}${Attributecounter}_language_notes`, oLang);                                 PathBuilderImporter.replaceCharacterAttribute(o.get('id'),`repeating_languages_${o.get("id")}${Attributecounter}_settings`, '1');                             }                         }); Any help is appreciated. Thanks,    Harold Austin