Forum Discussion
Ion_Gomez
6 years agoFrequent Visitor
Group display values
Hello everyone I would like to know if it is possible to add the values of the columa that says "Order Code" on a single line. Attached image This is how the matrix display comes out when I ...
- Anonymous6 years ago
Hi Ion_Gomez ,
Create an index column in power query and a calculated column as below:
_Order number = var _index=MAXX(FILTER('Table','Table'[Index]<EARLIER('Table'[Index])&&'Table'[Order number]<>BLANK()),'Table'[Index]) Return IF('Table'[Order number]=BLANK(),CALCULATE(MAX('Table'[Order number]),FILTER('Table','Table'[Index]=_index)),'Table'[Order number])Then create a measure as below:
Measure = CONCATENATEX(FILTER(ALL('Table'),'Table'[_Order number]=MAX('Table'[_Order number])),'Table'[Order code],"-")And you will see:
For the related .pbix file,pls click here.
Best Regards,
KellyDid I answer your question? Mark my post as a solution!
Anonymous
6 years agoNot applicable
Hi Ion_Gomez ,
Create an index column in power query and a calculated column as below:
_Order number =
var _index=MAXX(FILTER('Table','Table'[Index]<EARLIER('Table'[Index])&&'Table'[Order number]<>BLANK()),'Table'[Index])
Return
IF('Table'[Order number]=BLANK(),CALCULATE(MAX('Table'[Order number]),FILTER('Table','Table'[Index]=_index)),'Table'[Order number])
Then create a measure as below:
Measure = CONCATENATEX(FILTER(ALL('Table'),'Table'[_Order number]=MAX('Table'[_Order number])),'Table'[Order code],"-")
And you will see:
For the related .pbix file,pls click here.
Best Regards,
Kelly
Kelly
Did I answer your question? Mark my post as a solution!
Syndicate_Admin
4 years agoAdministrator
Hello kelly couldo you please resende the pbx?
Thank you