Forum Discussion

Dexter1088's avatar
Dexter1088
Frequent Visitor
7 years ago
Solved

Combine Rows in 1 Column when keeping the other columns the same

Hi There,   Can anyone help me with combining rows in a column?  I want the data to be the same in all the other columns. Example: (Combine Office Column) Name Office Phone Doug OH 1...
  • Ashish_Mathur's avatar
    7 years ago

    Hi,

    Try these measures

    =CONCATENATEX(VALUES(Data[Office]),Data[Office],",")

    =min(Data[Phone])

    Hope this helps.