Question : Remove row if column B and C are empty

Hi

I need Experts help create a macro to remove the row in “Compilation” sheet if the numbered rows (Column_A) having an empty cell in column B & C. I have attached the workbook together with the “sample result” for Experts to get a better view.

Hope Experts could help me to create this macro

Attachments:
 
 

Answer : Remove row if column B and C are empty

I found the solutions. Thanks now. it is working fine now.

EndpointAddress address = new EndpointAddress(new Uri("net.tcp://SC-Server-APP01:50010/Common/Definition"), EndpointIdentity.CreateUpnIdentity("svcrange@dev"));

            NetTcpBinding netTcpBinding = new NetTcpBinding();
            netTcpBinding.MaxReceivedMessageSize = int.MaxValue;

            netTcpBinding.TransactionFlow = true;
            netTcpBinding.TransactionProtocol = TransactionProtocol.OleTransactions;
            netTcpBinding.ReaderQuotas.MaxDepth = int.MaxValue;
            netTcpBinding.ReaderQuotas.MaxStringContentLength = int.MaxValue;
            netTcpBinding.ReaderQuotas.MaxArrayLength = int.MaxValue;

            ChannelFactory<IDefinition> factory = new ChannelFactory<IDefinition>(netTcpBinding, address);

            factory.Endpoint.Behaviors.Add(new AttachExtendedHeadersBehavior()
            {
                Domain = "range",
                Culture = "",
                User = ""
            });

            IDefinition IDefinition1 = factory.CreateChannel();



            var defs = IDefinition1.GetAllDefinitions("someuser");



Random Solutions  
 
programming4us programming4us