Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
FrankWoody
Helper I
Helper I

CHALLENGE CALCULATED COLUMN

HELLO, DEEARSS 
 I have this table :

DATERESULT
3-TDQ-44-EUATDQ-44
3-TDQ-55-EUA TDQ-55
7-TUQ-08-EUATUQ-08
7-ITQ-100-NWITQ-100
1-XI-3-KOXI-3
3-XI-4-LOGXI-4
3-XI-7-KOXI-7
7-XI-10-EBGXI-10
7-XI-11D-KOXI-11D
4-XI-12-ERLXI-12
IC-1-IC-1
IC-6IC-6

I would like to extract the date information to get the data as resulting using DAX is it possible?

1 ACCEPTED SOLUTION
VahidDM
Super User
Super User

Hi @FrankWoody 

 

Try this DAX expression to add your new calculated column:

New Column = 
VAR _Len =
    LEN ( 'Table'[DATE] )
VAR _Dash_No =
    _Len - LEN ( SUBSTITUTE ( 'Table'[DATE], "-", "" ) )
VAR _C =
    IF ( LEFT ( RIGHT ( 'Table'[DATE], 4 ), 1 ) = "-", 4, 3 )
VAR _K =
    IF ( _Dash_No > 2, RIGHT ( 'Table'[DATE], _Len - 2 ), 'Table'[DATE] )
VAR _Re =
    IF ( _Dash_No > 2, LEFT ( _K, LEN ( _K ) - _C ), LEFT ( 'Table'[DATE], 4 ) )
RETURN
    _Re

 

Output:

VahidDM_0-1654734565034.png

 



 

If this post helps, please consider accepting it as the solution to help the other members find it more quickly.

Appreciate your Kudos!! 

All logo

LinkedIn | Twitter | Blog | YouTube 

FIFA World Cup - Medal Records 

View solution in original post

6 REPLIES 6
FrankWoody
Helper I
Helper I

It turned out wonderful. I need to study the lines point by point to try to make some adaptations. and see if it works.

Whitewater100
Solution Sage
Solution Sage

Hi:

You can try this calculatedcolmun:

New Column =
VAR Firstdash =
FIND (
"-",
'Table'[Date],
1
)
VAR SecondDash =
FIND (
"-",
'Table'[Date],
FirstDash + 1
)
VAR thirdDash =
FIND (
"-",
'Table'[Date],
SecondDash + 2
)

RETURN
MID (
'Table'[Date],
FirstDash+1 ,
ThirdDash-3 )
I hope this is a good solution for you.
Whitewater100_0-1654735664143.png

 

I tried to use FIND but this error appears "Could not find the Search text given to function 'FIND' in the text in question."

Hi:

That is strange. Please see attached solution. The message is saying what ever you have between the " " it couldn't find. I copied your data and it's the dash it is finding. "-" . If you put an extra space or did not use - then it can't find it. Can you try again as the DAX is the most easy to understand for future applications for you and community.

Please mark as solution if you may having been putting an extra space between "-". Or using _ instead of -. I hope this solution makes sense. Thanks

https://drive.google.com/file/d/1xg_jdINqdl9DP-77vKfHKGa2SBnJNXYF/view?usp=sharing 

New Column =
VAR Firstdash =
FIND (
"-",
'Table'[Date],
1
)
VAR SecondDash =
FIND (
"-",
'Table'[Date],
FirstDash + 1
)
VAR thirdDash =
FIND (
"-",
'Table'[Date],
SecondDash + 2
)

RETURN
MID (
'Table'[Date],
FirstDash+1 ,
ThirdDash-3 )
Whitewater100_0-1654776567949.png

 

VahidDM
Super User
Super User

Hi @FrankWoody 

 

Try this DAX expression to add your new calculated column:

New Column = 
VAR _Len =
    LEN ( 'Table'[DATE] )
VAR _Dash_No =
    _Len - LEN ( SUBSTITUTE ( 'Table'[DATE], "-", "" ) )
VAR _C =
    IF ( LEFT ( RIGHT ( 'Table'[DATE], 4 ), 1 ) = "-", 4, 3 )
VAR _K =
    IF ( _Dash_No > 2, RIGHT ( 'Table'[DATE], _Len - 2 ), 'Table'[DATE] )
VAR _Re =
    IF ( _Dash_No > 2, LEFT ( _K, LEN ( _K ) - _C ), LEFT ( 'Table'[DATE], 4 ) )
RETURN
    _Re

 

Output:

VahidDM_0-1654734565034.png

 



 

If this post helps, please consider accepting it as the solution to help the other members find it more quickly.

Appreciate your Kudos!! 

All logo

LinkedIn | Twitter | Blog | YouTube 

FIFA World Cup - Medal Records 

RESULT TEXT
XI-7TICKET 3-XI-7-KO
XI-10TICKET 7-XI-10-EBG
XI-11DTICKET 7-XI-11D-KO
XI-12TICKET 4-XI-12-ERL
IC-1TICKET IC-1-
IC-6TICKET IC-6
EU-226TICKET 7-EU-226-SW
FLK-86INTICKET 7-FLK-86IN-GU
 Glove
 CHIEN 
 KLOW 
 HH 

Is there any simpler way to get it straight from the text?

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.

Top Solution Authors