Forum Discussion

ePros's avatar
ePros
Frequent Visitor
2 years ago
Solved

Counting matching information inside the same table with multiple lines under each date

Trying to find matching columns inside the same table where the date is the same, my sample data shows which ones I would want counted. Stuck on the fact that inside the same table the date wit...
  • rsbin's avatar
    2 years ago

    ePros ,

    Here is one approach that uses Power Query.

    1.  Add a Custom Column and name it something like "Concat":

    if [Outbound] = ""
    then [Date] & [Inbound]
    else [Date] & [Outbound]

    This will give you a column in which you will have your Duplicate values.  Unable to describe the next steps in detail, but a google search for "Power Query find Duplicates" will give you the detailed steps you can follow to identify those records that have your Duplicate values.

    Hope you can take it from this point on.

    Regards,