Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
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
Check out the July 2025 Power BI update to learn about new features.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
User | Count |
---|---|
26 | |
10 | |
10 | |
9 | |
6 |