Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! Register now.

Reply
RobKay12
Helper I
Helper I

Sorting through a Table of Information

Hello,

 

You have been very helpful in the past and I have another one for you that I think is over my head. I have the following table:

Job #NameDate

The Data I Have
   
2103612Doe, John2/12/2024
2103612

Doe, John

2/13/2024
2103612Doe, John2/14/2024
2103612Doe, John2/12/2024
2103612Doe, John2/13/2024
2103612Doe, John2/12/2024
2103612Doe, John2/13/2024
2103612Doe, John2/14/2024
2103612Doe, John2/14/2024
2103612Doe, John2/12/2024
2103612Doe, John2/13/2024
2103612Doe, John2/14/2024
2203434Smith, Jane2/15/2024
2203434Smith, Jane2/15/2024
2303429Smith, Jane2/12/2024
2303429Smith, Jane2/13/2024
2303429Smith, Jane2/14/2024
2303602Parker, Peter2/12/2024
2303602Parker, Peter2/13/2024
2303602Parker, Peter2/14/2024
2303602Parker, Peter2/15/2024
2303612Parker, Peter2/12/2024
2303612Parker, Peter2/13/2024
2303612Parker, Peter2/14/2024
2303612Parker, Peter2/15/2024
2303612Parker, Peter2/12/2024
2303612Parker, Peter2/13/2024
2303612Parker, Peter2/14/2024
2303612Parker, Peter2/15/2024

 

And I need to show:

 

What I need to Know
  
John Doe3
Jane Smith4
Peter Parker

4

 

Basically, The employee has to have 1 meeting for every different job # and every different date, if that makes sense. If the name is attached to the same job number on the same date then it only counts as 1.

Any help is greatly appreciated.

 

Thank you

6 REPLIES 6
RobKay12
Helper I
Helper I

I think I am off the track a bit, try this example (notice the similarity in spelling of the names but I can't get any fuzzy functions to work as I need). I have the following information:

RobKay12_0-1711388300923.png

RobKay12_1-1711388323180.png

And I want to see the following results:

RobKay12_2-1711388358483.png

Thank you all.

Anonymous
Not applicable

Hi, @RobKay12 

 

Based on your description, you want to implement filtering of sold games. I have created two methods to achieve the effect you are looking for. Following picture shows the effect of the display.

Method 1:
vyaningymsft_0-1710840366989.png
DAX:

Table 1 =

SUMMARIZE(

    'Table',

    'Table'[Name],

    "counts", DISTINCTCOUNT('Table'[Date])

)


Method 2:
Measure:

Counts = DISTINCTCOUNT('Table'[Date])

vyaningymsft_1-1710840366991.png


Best Regards,
Yang
Community Support Team

 

If there is any post helps, then please consider Accept it as the solution  to help the other members find it more quickly.
If I misunderstand your needs or you still have problems on it, please feel free to let us know. Thanks a lot!

How to get your questions answered quickly --  How to provide sample data in the Power BI Forum

 

 

Daoud_H
Helper I
Helper I

Hi @RobKay12 , 

 

You can try to create a table with a DAX measure : 

Table = 
SUMMARIZE(
    'Table', 
    'Table'[ID], 
    'Table'[Name], 
    "Count", DISTINCTCOUNT('Table'[Date])
)

 

audreygerred
Super User
Super User

Hello! You can create a concatenation column in Power Query by creating a custom column combining the Job #, Name, and Date. Once the data loads in Power BI, create a measure for the DISTINCTCOUNTNOBLANK of your new column. Make sure you have an employee dimension table. For your visual, grab teh name of employee from your dim table and the measure.





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!





Thanks. I tried this but it keeps giving me errors from the data.

What is the error that you are getting? You probably have to make the job number and date fields be strings first to concatenate. Then after the concatenation step (custom column) is applied, put the fields back to the proper data type. 





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!





Helpful resources

Announcements
September Power BI Update Carousel

Power BI Monthly Update - September 2025

Check out the September 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors
Top Kudoed Authors