I have created a scope function like this
$scope.sample = [
{\'SUPNAME\':\'AAA\',\'SUPCODE\':\'22671\',\'SLIPNO\':\'18384\',\'DESG\':\'1\',\'iv\':\'1\'},
i tried to create a Codepen for your case
grouped Codepen
<table class="table table-striped">
<tr><td>{{data1}}</td><td>{{data2}}</td></tr>
<tr ng-repeat="item in filteredsample = (sample | filter:{ SUPNAME: 'AAA'})">
</tr>
<ul ng-repeat="thing in filteredsample">
<li style = "float:left; margin:20px">DESG VALUE {{$index}} = {{thing.DESG}}</li>
</ul>
</div>
Hope this helps