The syntax is
docmd.OpenReport ReportName, View, FilterName, WhereCondition, WindowMode, OpenArgs
Filtername is the name of a query
Try
DoCmd.OpenReport "rPolicyComplete", acViewReport, , ,"[tPlcydpt]=" & tPlcydpt
or if tPlcydpt is a string
DoCmd.OpenReport "rPolicyComplete", acViewReport, ...