How about using the following steps? 1. Create two new datasets from Policy_Fact table by using Querybuilder. The first dataset will contain two columns, pol_num_txt and Service_Tax. Assign new column name, Amount, to Service_Tax. The second dataset will contain two columns, pol_num_txt and Sales_tax. Assign new column name, Amount, to Sales_tax. So, you will have two identical datasets which have two columns, pol_num_txt and Amount. The Amount column on the first dataset actually contains data of Service_Tax, and the Amount column on the second dataset actully contains data of Sales_tax. See examples below. First Dataset Second Dataset pol_num_txt Amount pol_num_txt Amount 101 12 101 8 102 12 102 8 103 12 103 8 2. Open the first dataset and run Append Table. Append Table is located under Data function. Append Table enables you to concatenate the first dataset and second dataset. After completing Append Table, sort the table by pol_num_txt.
... View more