Have a grid that I'm currently filling out via Angular like so:
<tbody>
<tr ng-repeat="customer in customers | orderBy: 'domain'" ng-if="customer.email" >
<td>{{customer.namebspr}}</td>
<td>{{customer.nummer}}</td>
<td>{{customer.domain}}</td>
<td>{{customer.domain2}}</td>
<td>{{customer.domain3}}</td>
<td>{{customer.domain4}}</td>
<td>{{customer.domain5}}</td>
</tr>
</tbody>
Can I do the same thing with a spreadsheet, or do I need to pull the json data directly?