Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Hi experts,
I have below Power BI data table, the current values of column "Production comments" are showing repeatedly if they have same the Date as below
My end users want the values of "Production comments" appear once if they have same Date as in green boxes below
I have tried to use Matrix (+/- icons and Stepped Layout are off) instead of Table but it does not achieve due to various reasons.
Please help me to find a solution
Much appreciated
Solved! Go to Solution.
Hi @peternznguyen ,
According to your description, I create a sample.
Here's my solution:
1. Add an index column in Power Query.
2.Create a calculated column.
Column =
IF (
'Table'[Index]
= MINX (
FILTER ( 'Table', 'Table'[Date] = EARLIER ( 'Table'[Date] ) ),
'Table'[Index]
),
'Table'[Production comments],
BLANK ()
)
Get the correct result:
I attach my sample below for your reference.
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Best regards,
Community Support Team_yanjiang
Hi @peternznguyen ,
According to your description, I create a sample.
Here's my solution:
1. Add an index column in Power Query.
2.Create a calculated column.
Column =
IF (
'Table'[Index]
= MINX (
FILTER ( 'Table', 'Table'[Date] = EARLIER ( 'Table'[Date] ) ),
'Table'[Index]
),
'Table'[Production comments],
BLANK ()
)
Get the correct result:
I attach my sample below for your reference.
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Best regards,
Community Support Team_yanjiang
Thank you very much!
Check out the July 2025 Power BI update to learn about new features.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
User | Count |
---|---|
62 | |
62 | |
52 | |
39 | |
24 |
User | Count |
---|---|
85 | |
57 | |
45 | |
43 | |
38 |