Your Maseeha is back :)
Hope this solution might help you :)
<p-dataTable [value]="data" [rows]="50" [rowsPerPageOptions]="[500,1000,2000]" [paginator]="true" [pageLinks]="5" sortMode="single" reorderableColumns="true" scrollable="true" scrollHeight="200px" [globalFilter]="gb" #dt exportFilename="search" styleClass="styles">
<p-column field="name" header="Name" [sortable]="true">
<ng-template let-col let-data="rowData" pTemplate="body">
<span><a [routerLink]='["pageName"]' [queryParams]='{key1:data["Your Value"],key2:data["Your Value"]}' style="color: blue;">{{data["Your Value"]}}</a></span>
</ng-template>
</p-column>
</p-dataTable>