Get certified for free when you join Fabric Data Days 2026 and dive into Fabric, Power BI, SQL, AI, and other essential data skills.
Join nowTry your skills in the Power BI Dataviz World Championship! Round one ends June 26. Join now
I am looking out for some help in DAX.
Data: https://www.icmagroup.org/membership/List-of-principal-delegates-2/
All the columns are Text columns and they are namely: Company, First Name, Last Name, Member Jurisdiction.
Concatenated First Name and Last Name as Full Name and dropped the columns First Name and Last Name using Power Query Interface.
The final dataset contains: Company, Member Jurisdiction, Full Name. All are text columns. Total 634 rows.
The following DAX I had written in this way:
and finally the following DAX:
I am quite certain I am making a terrible unpardonable silly mistake and that is why I am seeking your valuable advise. Please help me out.
Solved! Go to Solution.
Hi Xiaoxin,
Thank you for your help.. you are a life saviour. A minor change I had to do in your code segment. Instead of using CALCULATETABLE, CALCULATE will be in place and final piece of code is as follows:
I got the idea... it should be CALCULATE instead of CALCULATETABLE.... thank you...
Hi Xiaoxin,
By Following your step I am getting the following error pasted as screenshot:
Please advise.
Regards
Riv
Hi,
Could you share some data to work with and show the expected result.
Hi Ashish,
Data: https://www.icmagroup.org/membership/List-of-principal-delegates-2/
All the columns are Text columns and they are namely: Company, First Name, Last Name, Member Jurisdiction.
Concatenated First Name and Last Name as Full Name and dropped the columns First Name and Last Name using Power Query Interface.
The final dataset contains: Company, Member Jurisdiction, Full Name. All are text columns. Total 634 rows.
The following DAX I had written in this way:
Hi Ashish,
Please disregard my last message
Here is the updated one:
Data: https://www.icmagroup.org/membership/List-of-principal-delegates-2/
All the columns are Text columns and they are namely: Company, First Name, Last Name, Member Jurisdiction.
Concatenated First Name and Last Name as Full Name and dropped the columns First Name and Last Name using Power Query Interface.
The final dataset contains: Company, Member Jurisdiction, Full Name. All are text columns. Total 634 rows.
The following DAX I had written in this way:
Hi,
Your said that Xiaoxin's formula worked so i assume your question is answered. If not, then (as requested in my message earlier), share soem data and show the expected result.
Hi @rivthebest,
AFAIK, VALUES function will return a list if the current row context has multiple rows. (the returned data type is not supported to use in measure)
I think you need to do concatenate operations with the result to handle if the current row context has been aggregated with multiple rows:
List of Member Banks Per Jurisdiction and Type =
CALCULATETABLE (
CONCATENATEX ( VALUES ( ICMA_Members[Company] ), [Company], "," ),
GROUPBY ( ICMA_Members, ICMA_Members[Member Jurisdiction] ),
FILTER ( ICMA_Members, RIGHT ( ICMA_Members[Company], 3 ) = "LLP" )
)
Regards,
Xiaoxin Sheng
Hi Xiaoxin,
Thank you for your help.. you are a life saviour. A minor change I had to do in your code segment. Instead of using CALCULATETABLE, CALCULATE will be in place and final piece of code is as follows:
Don't miss out on Data Days, June 15 through August 7. Learn Fabric, Power BI, SQL, AI and more.
Check out the May 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 24 | |
| 22 | |
| 21 | |
| 20 | |
| 14 |
| User | Count |
|---|---|
| 59 | |
| 53 | |
| 41 | |
| 31 | |
| 31 |