Forum Discussion
Anonymous
4 years agoNot applicable
Collecting data from multiple lines to one line
Hi colleagues, I would like to have your support about the topic below: I have one table (summarized table) including multiple lines for each "Company" with different audit status. Is it possib...
Anonymous
4 years agoNot applicable
amitchandak First, thanks for your reply.
As my table is a result of "summarize" function, I can't use the "group by" ==> when i open power query my table isn't there.
Is there any other solution please ?
AlexisOlson
Super User
4 years agoYou could use SUMMARIZE or GROUPBY on your table.
For example:
SUMMARIZE (
Table1,
Table1[Company],
"Audit 1", MAX ( Table1[Audit 1] ),
"Audit 2", MAX ( Table1[Audit 2] ),
"Audit 3", MAX ( Table1[Audit 3] ),
"Audit 4", MAX ( Table1[Audit 4] )
)