+ Reply to Thread
Results 1 to 4 of 4

Detailed Report

Hybrid View

  1. #1
    Registered User
    Join Date
    03-09-2010
    Location
    united arab emirates
    MS-Off Ver
    Excel 2007
    Posts
    47

    Question Detailed Report

    I want a detailed Report from an attached file.


    Report as follows

    Free Service = Ok Separate in sheet
    Free Service = "" (not Finished) Separate In sheet
    Free Service = Delivered Remove from Data Sheet to New sheet
    Repairing = Ok Separate In sheet
    Repairing = "" (Not Ok) Separate In Sheet
    Repairing = " Delivered Remove from Data sheet to New Sheet

    Delivered items need to remove from data sheet to new sheet
    all other separate in one sheet and total
    Attached Files Attached Files

  2. #2
    Forum Expert nankw83's Avatar
    Join Date
    08-31-2015
    Location
    Kuwait
    MS-Off Ver
    365
    Posts
    1,713

    Re: Detailed Report

    Hi john,

    What do you mean by "Separate in sheet" ... Can you show us the expected result ?

  3. #3
    Registered User
    Join Date
    03-09-2010
    Location
    united arab emirates
    MS-Off Ver
    Excel 2007
    Posts
    47

    Re: Detailed Report

    I attached a new file
    Attached Files Attached Files

  4. #4
    Forum Expert nankw83's Avatar
    Join Date
    08-31-2015
    Location
    Kuwait
    MS-Off Ver
    365
    Posts
    1,713

    Re: Detailed Report

    Try below code ...
    Sub aa_test()
    
    Dim ws As Worksheet, Rg As Range
    Set ws = Sheets("Data")
    Set Rg = ws.[K1:M2]
    
    For x = 1 To 6
       Select Case x
          Case 1: Rg = [{"Category","Deliverd";"Free Service","Deliverd";"",""}]
          Case 2: Rg = [{"Category","Deliverd";"Repairing","Deliverd";"",""}]
          Case 3: Rg = [{"Category","Status","Deliverd";"Free Service","Ok","="}]
          Case 4: Rg = [{"Category","Status","Deliverd";"Free Service","=","="}]
          Case 5: Rg = [{"Category","Status","Deliverd";"Repairing","Ok","="}]
          Case 6: Rg = [{"Category","Status","Deliverd";"Repairing","=","="}]
       End Select
       If x <= 2 Then
          ws.[A1].CurrentRegion.AdvancedFilter 2, Rg.Resize(2, 2), Sheets.Add(, Sheets(Sheets.Count)).[A1]
       Else
          ws.[A1].CurrentRegion.AdvancedFilter 2, Rg, ws.Range("A" & Rows.Count).End(3)(5)
       End If
    Next
    
    Rg.Clear
    ws.ListObjects(1).Delete
    ws.[A1].Resize(ws.[A1].End(xlDown).Row - 1, 9).Delete xlShiftUp
    
    End Sub
    If I was able to help, you can thank me by clicking the * Add Reputation under my user name

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Sorting out detailed report on SIM Card internet usage
    By BekaTsignadze in forum Excel Formulas & Functions
    Replies: 5
    Last Post: 10-31-2021, 01:23 PM
  2. [SOLVED] Match datafigures from summary report with detailed data sheet
    By JEAN1972 in forum Excel General
    Replies: 2
    Last Post: 01-17-2016, 06:14 AM
  3. Agging report, openingbalance report,customer report vab code was not working
    By rana19 in forum Excel Programming / VBA / Macros
    Replies: 0
    Last Post: 08-28-2015, 03:38 AM
  4. Replies: 4
    Last Post: 08-18-2015, 10:02 AM
  5. Detailed Interpolation....help!
    By GPSmith* in forum Excel Formulas & Functions
    Replies: 1
    Last Post: 05-13-2014, 04:46 AM
  6. Detailed sorting
    By JonathanB2 in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 12-03-2013, 10:41 AM
  7. Convert Detailed Time Attendance report from Biometrics to Summary Report
    By firescorpio in forum Excel Programming / VBA / Macros
    Replies: 0
    Last Post: 10-02-2013, 02:48 AM

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1