The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends September 15. Request your voucher.
Hi people,
I have the following command:
CONCATENATEX(FILTER('BaseData','BaseData'[OrderNumber]=EARLIER('BaseData'[OrderNumber])),'BaseData'[Team]," ")
Which shows of this result in a collumn:
My Problem is, that I want every value "A", "B", "C", "D" just one time in the s_t column if it appears.
For example in the first row: there should be just one "A" in the s_t column.
or in the row where the "UnderOrderNumber" is "4", the row in the s_t colum should be "B C D"
I'm glad for any help, thanks in advance!
@Anonymous , Not tested, But try like
CONCATENATEX(distinct(FILTER('BaseData','BaseData'[OrderNumber]=EARLIER('BaseData'[OrderNumber]))),'BaseData'[Team]," ")
Thanks @amitchandak it shows a circular dependency.
Doesn't work unfortunatley..
I just read, that DISTINCT is a way to don't create a circular dependencys in general..
Do you have an idea to bypass this error?
User | Count |
---|---|
15 | |
12 | |
8 | |
7 | |
7 |
User | Count |
---|---|
24 | |
21 | |
12 | |
10 | |
7 |