How to create the report automatically using the data

Excel Facts

Which Excel functions can ignore hidden rows?
The SUBTOTAL and AGGREGATE functions ignore hidden rows. AGGREGATE can also exclude error cells and more.
VBA Code:
Option Explicit

Sub UniqTerms()
    Range("A1:A50").AdvancedFilter Action:=xlFilterCopy, CopyToRange:=Range("F1"), Unique:=True
End Sub
 
Upvote 0
VBA Code:
Option Explicit

Sub UniqTerms()
    Range("A1:A50").AdvancedFilter Action:=xlFilterCopy, CopyToRange:=Range("F1"), Unique:=True
End Sub
Hi Logit,

Appreciate your kind response. But I want a report from the data not unique values.
 
Upvote 0
INPUT
Please see the sample file.

There would be hundreds of records like these. Please note columns can be reshuffle if it helps.

OUTPUT
We want a report. Obviously, the report should be based on a unique email....

peter@google.com
mary@google.com
david@google.com
jane@google.com

PS: I have tried Pivot table but not getting perfect output.
It would be best to get the solution
1) For any number of records for that particular email
2) To fit the future expansion of columns so to cover more than the following.
* Email
* Goal
* Attempt
* Achieve
* Created Date
 
Upvote 0
You will need to be very specific what you consider a "report ".

It would help a great deal if you take your SAMPLE FILE and provide a very specific BEFORE and AFTER view so a better understanding
of the 'report' is obtained.
 
Upvote 0
Sure, say for one peter@google.com one of the graphs can be. We need to create for each unique email.

Image.png
 
Upvote 0

Forum statistics

Threads
1,216,153
Messages
6,129,179
Members
449,491
Latest member
maxim_sivakon

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