Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredJoin us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM. Register now.
Hello All,
I have a column with text as well as date
I'm trying split the text and date into different columns
Please let me know how it can be achieved using DAX.
Thank you in advance.
Regards,
Sarika
Solved! Go to Solution.
Hi @SarikaB
You can create two seperate column with below code:-
withDate =
VAR firstLetter =
LEFT ( Table[Date], 1 )
VAR numList = { "1", "2", "3", "4", "5", "6", "7", "8", "9", "0" }
RETURN
IF ( firstLetter IN numList, Table[Date], BLANK () )
withText =
VAR firstLetter =
LEFT ( Table[Date], 1 )
VAR numList = { "1", "2", "3", "4", "5", "6", "7", "8", "9", "0" }
RETURN
IF ( NOT firstLetter IN numList, Table[Date], BLANK () )
Output:-
Thanks,
Samarth
Best Regards,
Samarth
If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
Connect on Linkedin
Hi @SarikaB
You can create two seperate column with below code:-
withDate =
VAR firstLetter =
LEFT ( Table[Date], 1 )
VAR numList = { "1", "2", "3", "4", "5", "6", "7", "8", "9", "0" }
RETURN
IF ( firstLetter IN numList, Table[Date], BLANK () )
withText =
VAR firstLetter =
LEFT ( Table[Date], 1 )
VAR numList = { "1", "2", "3", "4", "5", "6", "7", "8", "9", "0" }
RETURN
IF ( NOT firstLetter IN numList, Table[Date], BLANK () )
Output:-
Thanks,
Samarth
Best Regards,
Samarth
If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
Connect on Linkedin
| User | Count |
|---|---|
| 13 | |
| 9 | |
| 8 | |
| 8 | |
| 7 |