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

Repeat Last Command
Pressing F4 adds dollar signs when editing a formula. When not editing, F4 repeats last command.

Forum statistics

Threads
1,216,309
Messages
6,130,001
Members
449,551
Latest member
MJS_53

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