Opening the report in dialog mode will suspend the rest of your code until the report is closed.
[vba]DoCmd.OpenReport "rptRepair", acViewPreview, , "tblItems.[Selector] = True", WindowMode:=acDialog
ClearSelected ' <- this line will not execute until report is closed
[/vba]