Fabric is Generally Available. Browse Fabric Presentations. Work towards your Fabric certification with the Cloud Skills Challenge.
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 November 2023 Power BI update to learn about new features.