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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Anonymous
Not applicable

Get Distinct Call ID's when same call ID is in different transfer Numbers

Hi @Team ,

 

I have two columns in my data one is Call ID and other is Transfer No as below

 

Call IDTransfer No
756431
756432
756433
178901
178902
178903
178904
238901
456781

 

I would like to show this data in a table visual, I should get unique count of the call ID's, if call ID's has max num as 4 I would like to count it in transfer no 4 only. and it should not be in any other transfer numbers.

Result I need :

Transfer No Count of Call ID
12
20
31
41

Please help me.

1 ACCEPTED SOLUTION

Hi, @Anonymous 

You can create a second mesure based on the first measure , like this:

Measure 2 = SUMX( VALUES('Table'[Transfer No]), [Measure])

Then we can meet your need:

vyueyunzhmsft_0-1670406861875.png

 

 

Thank you for your time and sharing, and thank you for your support and understanding of PowerBI! 

 

Best Regards,

Aniya Zhang

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly

View solution in original post

3 REPLIES 3
v-yueyunzh-msft
Community Support
Community Support

Hi , @Anonymous 

Here are the steps you can refer to :
(1)We can click " New Column" to create a calculated column :

Max No = var _id = [Call ID] 
var _t = FILTER( 'Table', 'Table'[Call ID] =_id)
return
MAXX(_t , [Transfer No])

(2)Then we can create a measure :

Measure = var _curNo = MAX('Table'[Transfer No])
var _t=DISTINCT(SELECTCOLUMNS( FILTER( ALLSELECTED('Table') , 'Table'[Max No] =_curNo) ,"Call ID" , [Call ID]))
return
COUNTROWS(_t)+0

(3)Then we can put the measure on the visual and we can meet your need:

vyueyunzhmsft_0-1670381698527.png

 

Thank you for your time and sharing, and thank you for your support and understanding of PowerBI! 

 

Best Regards,

Aniya Zhang

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly

Anonymous
Not applicable

Hi  @v-yueyunzh-msft ,

The total is not coming correctly, Total should also come correctly.

Thanks

 

Hi, @Anonymous 

You can create a second mesure based on the first measure , like this:

Measure 2 = SUMX( VALUES('Table'[Transfer No]), [Measure])

Then we can meet your need:

vyueyunzhmsft_0-1670406861875.png

 

 

Thank you for your time and sharing, and thank you for your support and understanding of PowerBI! 

 

Best Regards,

Aniya Zhang

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.