excel vba error 13 type mismatch

mansor

New Member
Joined
Dec 4, 2014
Messages
6
Hi!

Completely new to vba, I’m trying to write a code to copy rows from one workbook to another(s).
The code clears the worksheet of the destination workbook and then copies the rows that began with the desired country.
The two ranged variables Country and cell are country names.
The code clears and paste the correct rows to the destination workbook but when a new country (cell) appears it gives the error 13.
The code is:
Sub Air_emissions()
Set MyRange = Workbooks("4 Ag air emissions.xlsm").Sheets("Sheet1").Range("A1:A1937")
For Each Country In Sheets("Countries").Range("B1:B30")
Workbooks(Country & ".xlsm").Sheets("air_emiss").Cells.Clear
Workbooks("4 Ag air emissions.xlsm").Sheets("Sheet1").Activate
For Each cell In MyRange
If cell.Value2 = "geo" Or cell.Value2 = Country.Value2 Then
cell.EntireRow.Copy
Workbooks(Country & ".xlsm").Sheets("air_emiss").Activate
Range("A" & Rows.Count).End(xlUp).Offset(1, 0).EntireRow.PasteSpecial xlPasteValues
End If
Next
Next Country
End Sub

Could you please help?
Thanks in advance for your attention,
Best regards,
Ricardo
 

Excel Facts

Excel motto
Not everything I do at work revolves around Excel. Only the fun parts.
try replacing this:
If cell.Value2 = "geo" Or cell.Value2 = Country.Value2 Then

with this:
If cell = "geo" Or cell = Country Then



and replace this:
End If
Next
Next Country
End Sub

with this:
End If
Next cell
Next Country
End Sub
 
Upvote 0
Hi,

Thank you Chicago but the problem remains.
After copying and paste the first country to the destination file it gives the mismatch error.
How can i upload the file so you can test it?
Thanks for all your help and attention
Ricardo
 
Upvote 0
first, do the workbooks with countrynames.xlsm exist and are they open?
if yes try this

Code:
Sub Air_emissions()
Set MyRange = Workbooks("4 Ag air emissions.xlsm").Sheets("Sheet1").Range("A1:A1937")
For Each Country In Workbooks("4 Ag air emissions.xlsm").Sheets("Countries").Range("B1:B30")
Workbooks(Country & ".xlsm").Sheets("air_emiss").Cells.Clear
Workbooks("4 Ag air emissions.xlsm").Sheets("Sheet1").Activate
For Each cell In MyRange
If cell = "geo" Or cell = Country Then
cell.EntireRow.Copy
Workbooks(Country & ".xlsm").Sheets("air_emiss").Activate
Range("A" & Rows.Count).End(xlUp).Offset(1, 0).EntireRow.PasteSpecial xlPasteValues
Workbooks("4 Ag air emissions.xlsm").Sheets("Sheet1").Activate
End If
Next cell
Next Country
End Sub
 
Upvote 0
Hi Chicago,

Thanks again for your help but, the problem is the same.
He copies the geo line and all 50 lines from Áustria ( to the Austria workbook) but when the belgium row appear, it gives the error.
More thoughts?
 
Upvote 0
Hello Chicago,

Can you please give me na extra help :)
Thanks for your attention,
Best regards,
Ricardo
 
Upvote 0
Give this one a try and see what happens.

Code:
Sub Air_emissions()
On Error Resume Next
Set MyRange = Workbooks("4 Ag air emissions.xlsm").Sheets("Sheet1").Range("A1:A1937")
For Each Country In Workbooks("4 Ag air emissions.xlsm").Sheets("Countries").Range("B1:B30")
Workbooks(Country & ".xlsm").Sheets("air_emiss").Cells.Clear
Workbooks("4 Ag air emissions.xlsm").Sheets("Sheet1").Activate
For Each cell In MyRange
If cell = "geo" Or cell = Country Then
cell.EntireRow.Copy
Workbooks(Country & ".xlsm").Sheets("air_emiss").Activate
Range("A" & Rows.Count).End(xlUp).Offset(1, 0).EntireRow.PasteSpecial xlPasteValues
Workbooks("4 Ag air emissions.xlsm").Sheets("Sheet1").Activate
End If
Next cell
Next Country
End Sub

I would have to see your file to troubleshoot this. Try to use a dropbox or something and share the file/link and I'll look into it. I think this has to do something with the data itself or files not existing. Do you have belgium.xlsm file open?
 
Upvote 0
Hi Chicago,

Thanks for all your help.
Made some new files and the first code worked perfectly.
The problema was a #N/A cell in MyRange so the error finding the country name.
Problem solved 8)
Have a nice big weekend,
Ricardo
 
Upvote 0

Forum statistics

Threads
1,215,821
Messages
6,127,059
Members
449,356
Latest member
tstapleton67

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top