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
VD
Frequent Visitor

Match selected number in same table column

I am having table named as TABLE_1, I want output like, when user select Batch_Number "AT0164" then, it should check that Batch number in
Parent_Order_Number column and should return a rows that matches with Batch_Number "AT0164" and so on same for all batch numbers.

Please refer attached image.

 

Help.PNG

 

1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@VD , best is you have an independent batch table and create a measure like this and add this with all un summarized columns  in a table visual

 

measure =
var _max = maxx(allselected(Batch_Number),Batch_Number[Batch_Number])
return
calculate(count(Table[Batch_Number]), filter(Table, table[parent_order_number] = _max))

 

 

or with same table batch_number as slicer 

 

measure =
var _max = maxx(Table(Batch_Number),Table[Batch_Number])
return
calculate(count(Table[Batch_Number]), filter(Table, table[parent_order_number] = _max), removefilters(Table[Batch_Number]) )

 

refer Need of an Independent Table in Power BI: https://youtu.be/lOEW-YUrAbE

View solution in original post

5 REPLIES 5
PoojaDarbhe
Resolver I
Resolver I

Hi VD,

 

You can implement this as follows, I have used this in one of my project the same scenario was there

Steps : 

1) Create single column table having distinct values of batch_no as "Batch"

2) Create duplicate table of TABLE_1 as Dup_TABLE_1

3) Create relation in Batch[batch_no] and TABLE_1[batch_no]

4) Create relation in Batch[batch_no] and Dup_TABLE_1[parent_order_no]

5) Take a slicer having values from Batch table

Hope it solves your problem. Let me know in case of any help in implementing or it is working for you or not.

 

Best regards,

Pooja Darbhe

@PoojaDarbhe Thanks, i did the same and it's working for me.

Good to hear that @VD.

 

As this solution is working for you, it will be great if you accept the solution. Thanks a lot.

 

Best regards,

Pooja Darbhe

amitchandak
Super User
Super User

@VD , best is you have an independent batch table and create a measure like this and add this with all un summarized columns  in a table visual

 

measure =
var _max = maxx(allselected(Batch_Number),Batch_Number[Batch_Number])
return
calculate(count(Table[Batch_Number]), filter(Table, table[parent_order_number] = _max))

 

 

or with same table batch_number as slicer 

 

measure =
var _max = maxx(Table(Batch_Number),Table[Batch_Number])
return
calculate(count(Table[Batch_Number]), filter(Table, table[parent_order_number] = _max), removefilters(Table[Batch_Number]) )

 

refer Need of an Independent Table in Power BI: https://youtu.be/lOEW-YUrAbE

@amitchandak, Thanks for the solution. 

I have created new table with single column Batch and join that table with actual table and it's working perfectly fine.

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.

Top Solution Authors