Join us for an expert-led overview of the tools and concepts you'll need to pass exam PL-300. The first session starts on June 11th. See you there!
Get registeredPower BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.
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!
User | Count |
---|---|
80 | |
77 | |
64 | |
48 | |
45 |
User | Count |
---|---|
103 | |
45 | |
39 | |
39 | |
36 |