Forum Discussion
New Column Measure based on other column
Hi Team ,
Below is my current Table
I want to add another column based on Index collumn
Example : In Index column i have "3" is repeated twice and in Column 1 and 38 is belongs to 3 .
so i need to create 1 more column like 1,38 in another column .
Please hlep me in this ..
Thanks
- Anonymous3 years ago
Hi Ayappan ,
Please try:
Column = CONCATENATEX(FILTER(ALL('Table'),'Table'[Index]=EARLIER('Table'[Index])),'Table'[Column1],",")or
Measure = CONCATENATEX(FILTER(ALL('Table'),'Table'[Index]=MAX('Table'[Index])),'Table'[Column1],",")Best Regards,
Gao
Community Support TeamIf there is any post helps, then please consider Accept it as the solution to help the other members find it more quickly. If I misunderstand your needs or you still have problems on it, please feel free to let us know. Thanks a lot!
How to get your questions answered quickly -- How to provide sample data in the Power BI Forum
4 Replies
- AnonymousNot applicable
Hi Ayappan ,
Please try:
Column = CONCATENATEX(FILTER(ALL('Table'),'Table'[Index]=EARLIER('Table'[Index])),'Table'[Column1],",")or
Measure = CONCATENATEX(FILTER(ALL('Table'),'Table'[Index]=MAX('Table'[Index])),'Table'[Column1],",")Best Regards,
Gao
Community Support TeamIf there is any post helps, then please consider Accept it as the solution to help the other members find it more quickly. If I misunderstand your needs or you still have problems on it, please feel free to let us know. Thanks a lot!
How to get your questions answered quickly -- How to provide sample data in the Power BI Forum