Forum Discussion
Anonymous
7 years agoNot applicable
CONCATENATEX AND VALUES RETURNING WRONG VALUES
I am using this formula: Table = SUMMARIZE('CUSTOMER-S&OP';'CUSTOMER-S&OP'[Customer Name];"S&OP";CONCATENATEX(VALUES('S&OP''S'[S&OP]);'S&OP''S'[S&OP];"")) I need to get te Custommer and the S&...
- 7 years ago
Hi Anonymous
You may refer to below fomular. But it's better that if you could share your sample data which could reproduce your scenario and your desired output.
Table1 =
SUMMARIZE (
Table,
Table[Customer Name],
"S&OP", CONCATENATEX (
FILTER (
VALUES ( Table[S&OP] ),
Table[Customer Name] = EARLIER ( Table[Customer Name] )
),
Table[S&OP],
","
)
)
Regards,
Cherie
AlB
7 years agoCommunity Champion
Hi Anonymous
Can you show the pbix? Or at least show the structure and relationships of your tables?
From what I see, the [Customer Name] and [S&OP] columns are in different tables?