The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance 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
User | Count |
---|---|
27 | |
12 | |
8 | |
7 | |
5 |
User | Count |
---|---|
35 | |
14 | |
12 | |
6 | |
6 |