Hi Swapnil, Attached the Source table and expected output Where I I need to include product Name? var Product= DS_1.getMembers("ZDBPRGP", 100); var Rank=''; Product.forEach(function(element, index) { Rank = DS_1.getDataAsString("CU4A953ZYFOQAW06EQKL0KVVS",{"ZDBPRGP":element.internalKey}); if (Rank == '1') {TEXT_1.setText(Rank);} else if (Rank == '2') {TEXT_2.setText(Rank);} else if (Rank == '3') {TEXT_3.setText(Rank);} else if (Rank == '4') {TEXT_4.setText(Rank );} else if (Rank == '5') {TEXT_5.setText(Rank);} else if (Rank == '6') {TEXT_6.setText(Rank);} else if (Rank == '7') {TEXT_7.setText(Rank);} else if (Rank == '8') {TEXT_8.setText(Rank);} else if (Rank == '9') {TEXT_9.setText(Rank );} else if (Rank == '10') {TEXT_10.setText(Rank );} }); Thanks, NV
↧