What I Have Done: I have created a Tally TDL (Tally Definition Language) code that fetches data from a website in JSON format and displays it in Tally. Currently, my code successfully handles a single-level JSON structure and shows the details for one record (e.g., one person's ID and related fields). The code retrieves the JSON data, parses it, and maps it to Tally fields for display. What I Need: I want to extend this functionality to handle multi-level JSON data, specifically for multiple records. For example, if the JSON contains details of 5-10 persons (each with their own ID and associated fields), I need guidance on how to: Parse and loop through multiple records in the JSON. Display all these records in Tally, either in a report, table, or another suitable format. Ensure the code dynamically handles varying numbers of records. Please review the code below, which works for a single record, and provide a modified or new TDL code to handle multiple records in a multi-level JSON structure. Additionally, explain how the changes work and how I can display the data effectively in Tally. http://datatoolsinfo.com/tallyjson/json.php (done) http://datatoolsinfo.com/tallyjson/multijson.php (need help)