import Excel-Sheet to another Excel-Sheet with Condition

Melika_Sn

New Member
Joined
Apr 27, 2022
Messages
5
Platform
  1. Windows
Hi guys, I have 2 excel files that I want to have when applying macro and exporting data from excel 1 to excel 2 this condition:
In the NOOS/SOPO column:
If you select NOOS in Excel 1(from Drop-Down) , the NOOS column in excel 2 will be Yes
If you select SOPO in Excel 1, the SOPO column in excel 2 will be Yes
If you select NOOS&SOPO in Excel 1, the NOOS and SOPO columns in excel will be Yes.

I have written this macro but unfortunately, it does not work, can you please help me.
[
If .Cells(lngZ_src, dt_col("NOOS/SOPO")).Value = "NOOS" Then
ws.Cells(lngZ_dest, dt_col_exp("NOOS [NOS]")).Text = "Ja"
If .Cells(lngZ_src, dt_col("NOOS/SOPO")).Value = "SOPO" Then
ws.Cells(lngZ_dest, dt_col_exp("SOPO[Sonderposten/Remainders]")).Text = "Nein"
If .Cells(lngZ_src, dt_col("NOOS/SOPO")).Value = "NOOS&SOPO" Then
ws.Cells(lngZ_dest, dt_col_exp("SOPO[Sonderposten/Remainders]")).Text = "Ja" And ws.Cells(lngZ_dest, dt_col_exp("NOOS [NOS]")).Text = "Ja"
End If
End If
End If
]
 

Excel Facts

Excel motto
Not everything I do at work revolves around Excel. Only the fun parts.

Forum statistics

Threads
1,223,227
Messages
6,170,849
Members
452,361
Latest member
d3ad3y3

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