James, this is a little long, but effective in producing the desired outcome, based off of your previous answer.
Enter the following in Column E2 and copy down: (Formula brings columns A2 through D2 together as one text string)
=TRIM(CONCATENATE(A2," ",B2," ",C2," ",D2))
Enter the following in Column F2 and copy down: (Formula Extracts only unique values found in Column E2 where the Status = "Own")
=IFERROR(INDEX($E$2:$E$8,MATCH(0,IF($B$2:$B$8="Own",COUNTIF($F$1:$F1,$E$2:$E$8),""),0))&"","")
Enter the following in Column G2 and copy down "Owner": (Index Match returns the corresponding value identified in Column F2)
=IFERROR(INDEX($A$2:$A$8,MATCH(F2,$E$2:$E$8,0)),"")
Enter the following in Column H2 and copy down "Status": (Index Match returns the corresponding value identified in Column F2)
=IFERROR(INDEX($B$2:$B$8,MATCH(F2,$E$2:$E$8,0)),"")
Enter the following in Column I2 and copy down "Make/Model": (Index Match returns the corresponding value identified in Column F2)
=IFERROR(INDEX($C$2:$C$8,MATCH(F2,$E$2:$E$8,0)),"")
Enter the following in Column J2 and copy down "Year": (Index Match returns the corresponding value identified in Column F2)
=IFERROR(INDEX($D$2:$D$8,MATCH(F2,$E$2:$E$8,0)),"")