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

We've captured the moments from FabCon & SQLCon that everyone is talking about, and we are bringing them to the community, live and on-demand. Starts on April 14th. Register now

Reply
Mjafar08
Regular Visitor

Power Bi Dsiplay value in table based on unique identifier(id)

Hi 

Need help
New to power bi and dax

I've a table 1 as 

Table 1   
IDTitleDatecount
123i have a dream06-Aug100
123i have a dream;05-Aug14
123i have, a dream04-Aug15
123I've a dream06-Aug1
123van egy álmom04-Aug1
123Tá brionglóid agam04-Aug1
123ik heb een droom04-Aug1


and I want this table 2 as output

Table 2 : Output  
IDTitleDatecount
123i have a dream06-Aug133



Want to display table 2 in the form of a table/matrix graph in Power BI 
any idea how to proceed

1 ACCEPTED SOLUTION

Hi, @Mjafar08 

 

Is this the result you expect?

vzhangti_0-1664185407849.pngvzhangti_1-1664185424593.png

 

Best Regards,

Community Support Team _Charlotte

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

5 REPLIES 5
v-zhangti
Community Support
Community Support

Hi, @Mjafar08 

 

You can try the following methods.

Table:

Table 2 = 
SUMMARIZE (
    'Table 1',
    'Table 1'[ID],
    "Title", MIN ( 'Table 1'[Title] ),
    "Date", MAX ( 'Table 1'[Date] ),
    "count", SUM ( 'Table 1'[count] )
)

vzhangti_0-1663920522470.png

Is this the result you expect?

 

Best Regards,

Community Support Team _Charlotte

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

Hi @v-zhangti 
Is there any way we can achieve this while dragging/dropping columns and then doing some transformation? For exa: we have ID,Title, Date, Count as fields and we want to achieve the output in the form of a table/matrix

Hi, @Mjafar08 

 

Is this the result you expect?

vzhangti_0-1664185407849.pngvzhangti_1-1664185424593.png

 

Best Regards,

Community Support Team _Charlotte

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

parry2k
Super User
Super User

@Mjafar08 what is the logic to summarizing the data? Why it is Aug 06th and not any other date?

 

Follow us on LinkedIn and YouTube.gif to our YouTube channel

I would  Kudos if my solution helped. 👉 If you can spend time posting the question, you can also make effort to give Kudos to whoever helped to solve your problem. It is a token of appreciation!

 

Visit us at https://perytus.com, your one-stop shop for Power BI-related projects/training/consultancy.



Subscribe to the @PowerBIHowTo YT channel for an upcoming video on List and Record functions in Power Query!!

Learn Power BI and Fabric - subscribe to our YT channel - Click here: @PowerBIHowTo

If my solution proved useful, I'd be delighted to receive Kudos. When you put effort into asking a question, it's equally thoughtful to acknowledge and give Kudos to the individual who helped you solve the problem. It's a small gesture that shows appreciation and encouragement! ❤


Did I answer your question? Mark my post as a solution. Proud to be a Super User! Appreciate your Kudos 🙂
Feel free to email me with any of your BI needs.

Hi @parry2k 
You see 6th Aug is the latest date meaning a situation where we want to select the latest title based on date and max(metric) here 'Count'

Helpful resources

Announcements
New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

March Power BI Update Carousel

Power BI Community Update - March 2026

Check out the March 2026 Power BI update to learn about new features.