Just noticed an issue. Because on sheet PTAJE (and similar) you have used only JE as the Jurisdiction, the code will return wrong values for PTBJE if JE is used again
This line
Set Juris = wst.Columns(10).Find(arr(i, 10))
should be changed to
Set Juris = wst.Columns(10).Find(arr(i, 10), Lookat:=xlWhole)
once data has been fixed.