Hi,
i have below table in DB
| DB Table | |||
| ID | Column | Row data | |
| 1 | Supplier CODE | 1001 | |
| 2 | Supplier Name | ACB | |
| 3 | Product | 7K7 | |
| 4 | Price | 1000 | |
| now I create one report parameter order1 | |||
| IF I will give order1.value=1,2,3 then Report will come like this :-- | |||
| Suppliercode | Supplier Name | Product | |
| 1001 | ACB | 7K7 | |
| IF I will give order1.value=3,2,1 then Report will come like this :-- | |||
| Product | Supplier Name | Suppliercode | |
| 7K7 | ACB | 1001 | |
| IF I will give order1.value=1,3 then Report will come like this :-- | |||
| Suppliercode | Product | ||
| 1001 | 7K7 | ||