The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
Solved! Go to Solution.
Hi , @sraj
According to your description, you want to concate 2 columns by DESC order .
If this , you can refer to :
(1)This is my test data:
(2)We can click "New Column" and enter :
Column = CONCATENATEX({'Table'[Column1],'Table'[Column2]} , [Value],"",[Value],DESC)
(3)Then we can meet your need:
If this method does not meet your needs, you can provide us with your special sample data and the desired output sample data in the form of tables, so that we can better help you solve the problem.
Thank you for your time and sharing, and thank you for your support and understanding of PowerBI!
Best Regards,
Aniya Zhang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly
Hi , @sraj
According to your description, you want to concate 2 columns by DESC order .
If this , you can refer to :
(1)This is my test data:
(2)We can click "New Column" and enter :
Column = CONCATENATEX({'Table'[Column1],'Table'[Column2]} , [Value],"",[Value],DESC)
(3)Then we can meet your need:
If this method does not meet your needs, you can provide us with your special sample data and the desired output sample data in the form of tables, so that we can better help you solve the problem.
Thank you for your time and sharing, and thank you for your support and understanding of PowerBI!
Best Regards,
Aniya Zhang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly
It didnt work, I received this "A circular Dependency was detected" error.
Unfortunately, circular dependencies are a bit difficult to diagnose without seeing your specific model. I don't think what I suggested should have circular dependency issues in most cases (it certainly didn't in my testing).
Hi @AlexisOlson - thanks for responding, what do I place in the [Value] option?
Leave it as is. That's the default column name for a table construction using "{ }".
CONCATENATEX allows you to specify sorting:
CONCATENATEX ( { 'settl'[_year], 'sched'[_yr] }, [Value], ", ", [Value], DESC )