Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6931733
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T11:36:57+00:00 2026-05-27T11:36:57+00:00

I have a web application that generates two different Excel reports with different numbers

  • 0
  1. I have a web application that generates two different Excel reports with different numbers of leaves and different number of columns, see below.

    Report 1
    Sheet1 has four columns headed C11, C12, C13, C14
    Sheet2 has three columns headed C21, C22, C23

    Report 2
    Sheet1 has four columns headed C11, C12, C13, C14 (same as in Report 1)
    Sheet2 has three columns headed C21, C22, C23 (same as in Report 1)
    Sheet3 has three columns headed C31, C32, C33, C34, C35,….

  2. I want to be able to remove some columns in the reports of two levels that I should enter, see below:

    Level 1: Search for Sheet1 and remove the C12 and then
    Search for Sheet2 and remove C22, then
    Search Sheet3, and remove C32

    Level 2: Search for Sheet1 and remove the C11 and C13, then
    Search for Sheet2 and remove the C21 and C22, then
    Search Sheet3, and remove C33, C34, C35

  3. I want the macro first asks for the level and then searches for each Sheet and looking forward for each column and remove it as described above.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-27T11:36:57+00:00Added an answer on May 27, 2026 at 11:36 am

    Use the following code. Run the Macro ‘Choose’ to select the level. This code deletes the entire column where the conditions are true

    Sub Choose()
        l = InputBox(Prompt:="Enter the level you want", Title:="Level Selection")
        If l = 1 Then
            Call Level1
        ElseIf l = 2 Then
            Level2
        ElseIf l = "" Then
        Else
            MsgBox "Incorrect entry.", vbInformation, "Incorrect"
        End If
    End Sub
    
    Sub Level1()
        Application.ScreenUpdating = False
        On Error Resume Next
        Blad1.Activate
        Blad1.Cells.Find(What:="C12", After:=ActiveCell, LookIn:=xlValues, LookAt:=xlPart, SearchOrder:=xlByRows, SearchDirection:=xlNext, MatchCase:=False, SearchFormat:=False).Activate
        i = ActiveCell.Column
        Blad1.Columns(i).Delete
    
        Blad2.Activate
        Blad2.Cells.Find(What:="C22", After:=ActiveCell, LookIn:=xlValues, LookAt:=xlPart, SearchOrder:=xlByRows, SearchDirection:=xlNext, MatchCase:=False, SearchFormat:=False).Activate
        i = ActiveCell.Column
        Blad2.Columns(i).Delete
    
        Blad3.Activate
        Blad3.Cells.Find(What:="C32", After:=ActiveCell, LookIn:=xlValues, LookAt:=xlPart, SearchOrder:=xlByRows, SearchDirection:=xlNext, MatchCase:=False, SearchFormat:=False).Activate
        i = ActiveCell.Column
        Blad3.Columns(i).Delete
        Blad1.Activate
        Application.ScreenUpdating = True
    End Sub
    
    
    Sub Level2()
        Application.ScreenUpdating = False
        On Error Resume Next
        Blad1.Activate
        Blad1.Cells.Find(What:="C11", After:=ActiveCell, LookIn:=xlValues, LookAt:=xlPart, SearchOrder:=xlByRows, SearchDirection:=xlNext, MatchCase:=False, SearchFormat:=False).Activate
        i = ActiveCell.Column
        Blad1.Columns(i).Delete
        Blad1.Cells.Find(What:="C13", After:=ActiveCell, LookIn:=xlValues, LookAt:=xlPart, SearchOrder:=xlByRows, SearchDirection:=xlNext, MatchCase:=False, SearchFormat:=False).Activate
        i = ActiveCell.Column
        Blad1.Columns(i).Delete
    
        Blad2.Activate
        Blad2.Cells.Find(What:="C21", After:=ActiveCell, LookIn:=xlValues, LookAt:=xlPart, SearchOrder:=xlByRows, SearchDirection:=xlNext, MatchCase:=False, SearchFormat:=False).Activate
        i = ActiveCell.Column
        Blad2.Columns(i).Delete
        Blad2.Cells.Find(What:="C22", After:=ActiveCell, LookIn:=xlValues, LookAt:=xlPart, SearchOrder:=xlByRows, SearchDirection:=xlNext, MatchCase:=False, SearchFormat:=False).Activate
        i = ActiveCell.Column
        Blad2.Columns(i).Delete
    
        Blad3.Activate
        Blad3.Cells.Find(What:="C33", After:=ActiveCell, LookIn:=xlValues, LookAt:=xlPart, SearchOrder:=xlByRows, SearchDirection:=xlNext, MatchCase:=False, SearchFormat:=False).Activate
        i = ActiveCell.Column
        Blad3.Columns(i).Delete
        Blad3.Cells.Find(What:="C34", After:=ActiveCell, LookIn:=xlValues, LookAt:=xlPart, SearchOrder:=xlByRows, SearchDirection:=xlNext, MatchCase:=False, SearchFormat:=False).Activate
        i = ActiveCell.Column
        Blad3.Columns(i).Delete
        Blad3.Cells.Find(What:="C35", After:=ActiveCell, LookIn:=xlValues, LookAt:=xlPart, SearchOrder:=xlByRows, SearchDirection:=xlNext, MatchCase:=False, SearchFormat:=False).Activate
        i = ActiveCell.Column
        Blad3.Columns(i).Delete
        Blad1.Activate
        Application.ScreenUpdating = True
    End Sub
    

    Please see the file including macro

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a web application that should behave differently for internal users than external
I have a web application that is becoming rather large. I want to separate
I have a web application that needs to take a file upload from the
I have this web application that has grown to an unmanageable mess. I want
I have a web application that's branded according to the user that's currently logged
I have a web application that allows a user to search on some criteria,
I have a web application that makes heavy use of the Session state to
I have a web application that comprises the following: A web project (with a
We have a web application that manages inventory for our computer support group. One
I have a web application that I'm writing (C#, MSSQL) and I need to

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.