Hi Geoff,
What i've tried to do is Select ie copy subcontractor using the commands on that workbook i sent you yesterday and then insert those rates into another workbook
I've been using this command which again is in the workbook i sent you yesterday:
Private Sub Image13_Click()
msheet = ActiveSheet.Name
Select Case msheet
Case "BoQ"
If Application.CutCopyMode = False Then
MsgBox "Please Select Subcontractor Rates To Paste!"
Else
Range("s:s"

.Select
Set Rng = Selection.Find(What:=ComboBox1.Text, After:=ActiveCell, SearchOrder:=xlByRows, SearchDirection:=xlNext, MatchCase:= _
False)
If Rng Is Nothing Then
MsgBox "This Subcontractor Doesn't Exist!"
Exit Sub
End If
Rng.Activate
ActiveCell.Offset(0, -11).Select
Selection.PasteSpecial Paste:=xlPasteValues
End If
Case Else
MsgBox "Please Select Bill Of Quantities To Enter Rates"
End Select
End Sub
The trouble is that there might be an occasion when the areas are a diiferent size, and i don't want it to allow the paste to complete should this be the case.
A warning message should activate!
Cheers
Andrew