Join us for an expert-led overview of the tools and concepts you'll need to pass exam PL-300. The first session starts on June 11th. See you there!
Get registeredPower BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.
I need to split this by dd/mm/yyyy (UK date format).
I'm in need of an DAX formula that'll extract the date portion (02022024) of the Source Name column and then return the result in the above manner.
If someone can guide me in this, it'll be wonderful. I'm very raw with DAX.
Solved! Go to Solution.
Hi @Shak1254,
Can you please try this:
Date =
VAR DatePosition =
LEN ( Files[FileName] ) - LEN ( "ddmmyyyy" )
- LEN ( ".xlsx" ) + 1
VAR DateString =
MID ( Files[FileName], DatePosition, 8 )
RETURN
FORMAT (
DATE ( RIGHT ( DateString, 4 ), MID ( DateString, 3, 2 ), LEFT ( DateString, 2 ) ),
"dd/mm/yyyy"
)
Upvote and accept as a solution if it helps!
Hi @Shak1254,
Can you please try this:
Date =
VAR DatePosition =
LEN ( Files[FileName] ) - LEN ( "ddmmyyyy" )
- LEN ( ".xlsx" ) + 1
VAR DateString =
MID ( Files[FileName], DatePosition, 8 )
RETURN
FORMAT (
DATE ( RIGHT ( DateString, 4 ), MID ( DateString, 3, 2 ), LEFT ( DateString, 2 ) ),
"dd/mm/yyyy"
)
Upvote and accept as a solution if it helps!
You're a star! Thanks.
Hi, sorry for the very late response. I'm going to check now and get back to you.
User | Count |
---|---|
17 | |
16 | |
14 | |
13 | |
12 |
User | Count |
---|---|
17 | |
14 | |
12 | |
10 | |
9 |