Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
We have a requirement to split First and Last name from Fullname in direct query mode using DAX.
Hi @Mahipal ,
I made simple samples and you can check the results below:
First Name = PATHITEM(SUBSTITUTE(MAX('Table'[User Name]),",","|"),1)
Last Name = PATHITEM(SUBSTITUTE(MAX('Table'[User Name]),",","|"),2)
An attachment for your reference. Hope it helps!
Best regards,
Community Support Team_ Scott Chang
If this post helps then please consider Accept it as the solution to help the other members find it more quickly.
Hello,
Its working fine for import mode. Here we are using direct mode so the output is different as in the below image in direct mode
Can you find the query for direct mode.
Hi @Mahipal ,
It's strange, I used the solution @Dangar332 provided and I was able to get the right data.Did you create a calculated column instead of a measure?
Best regards,
Community Support Team_ Scott Chang
Thank you so much. Yes as measure this query is working. But I would like to have a query for Calculated Calumn as per our requirement.
Hi @Mahipal ,
As far as I know, there doesn't seem to be a way for this to be realized by calculating columns.
Best regards,
Community Support Team_ Scott Chang
Hello @Dangar332 your Query is working but results are not perfect. I am seeing same Name for all records.
hi, @Mahipal
you have any Unique identity on which we can add first name and last name in all rows.
and why cash,johnny only is there any specific condition?
I am using same query which you sent here. But the result is only one name. Here is query
hi, @Mahipal
try below code for measure
Firstname =
LEFT(
MIN('Table (2)'[Name]),
SEARCH(",",MIN('Table (2)'[Name]))-1
)
Last name =
RIGHT(
MIN('Table (2)'[Name]),
LEN(MIN('Table (2)'[Name]))-SEARCH(",",MIN('Table (2)'[Name]))
)
If there is any post helps, then please consider Accept it as the solution to help the other members find it more quickly.
If i modified that query from
I am still not getting proper results.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
12 | |
9 | |
9 | |
6 | |
5 |
User | Count |
---|---|
17 | |
15 | |
10 | |
9 | |
8 |