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

Join us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.

Reply
Hussard
Frequent Visitor

format field

Hello,

 

I have one column which contains version of softwares like below 

 

3.1.7.12

3.1.7.14

2.6.5

2.6.8

27.4.12.8

 

and so on...

 

My question is how can I format each numbers between two points to have every time 2 digits ? So:

 

03.01.07.12

03.01.07.14

02.06.05

02.06.08

27.04.12.08

 

Is it possible to do that with dax formulas ?

 

Sébastien

2 ACCEPTED SOLUTIONS
v-danhe-msft
Microsoft Employee
Microsoft Employee

Hi @Hussard,

Based on my test, you could refer to below steps:

Sample data:

1.PNG

Create 5 columns:

B = IF(PATHITEM(SUBSTITUTE('Table2'[A],".", "|"), 1)=BLANK(),BLANK(),IF(LEN(PATHITEM(SUBSTITUTE('Table2'[A],".", "|"), 1))<2,"0"&PATHITEM(SUBSTITUTE('Table2'[A],".", "|"), 1),PATHITEM(SUBSTITUTE('Table2'[A],".", "|"), 1)))
C = IF(PATHITEM(SUBSTITUTE('Table2'[A],".", "|"), 2)=BLANK(),BLANK(),IF(LEN(PATHITEM(SUBSTITUTE('Table2'[A],".", "|"), 2))<2,".0"&PATHITEM(SUBSTITUTE('Table2'[A],".", "|"), 2),PATHITEM(SUBSTITUTE('Table2'[A],".", "|"), 2)))
D = IF(PATHITEM(SUBSTITUTE('Table2'[A],".", "|"), 3)=BLANK(),BLANK(),IF(LEN(PATHITEM(SUBSTITUTE('Table2'[A],".", "|"), 3))<2,".0"&PATHITEM(SUBSTITUTE('Table2'[A],".", "|"), 3),"."&PATHITEM(SUBSTITUTE('Table2'[A],".", "|"), 3)))
E = IF(PATHITEM(SUBSTITUTE('Table2'[A],".", "|"), 4)=BLANK(),BLANK(),IF(LEN(PATHITEM(SUBSTITUTE('Table2'[A],".", "|"), 4))<2,".0"&PATHITEM(SUBSTITUTE('Table2'[A],".", "|"), 4),"."&PATHITEM(SUBSTITUTE('Table2'[A],".", "|"), 4)))
New A = Table2[B]&Table2[C]&Table2[D]&Table2[E]

Result :

1.PNG

 

You could also download the pbix file to have a view.

 

Regards,

Daniel He

 

 

Community Support Team _ Daniel He
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

Anonymous
Not applicable

Hi @Hussard

The following way you can get your solution easily.

  1. Go to the Edit Query option under the ribbon pallet.
  2. Create a duplicate column from the existing column.
  3. Go to the Transform tab in Query editor and Select Split column By Delimeter within drop-down select Delimiter type as a "Custom Delimiter" and put "." in the box, then select Each occurrence of Delimeter under "Split at" option.
  4. Change the type of each Delimited column.
  5. Calculate the length of each Delimited column.
  6. Choose the Custom column option under the Add column option and write the below code.
  7. (if [FstPart Length]=1 then ("0" & [FstPart]) else [FstPart]) &
    (if [FstPart Length]=0 then "" else ".") &
    (if [SecPart Length]=1 then ("0" & [SecPart]) else [SecPart]) &
    (if [SecPart Length]=0 then "" else ".") &
    (if [ThrdPart Length]=1 then ("0" & [ThrdPart]) else [ThrdPart]) &
    (if [FrthPart Length]=0 then "" else ".") &
    (if [FrthPart Length]=1 then ("0" & [FrthPart]) else [FrthPart])
  8. Then Select "close & Apply" under the Home tab.

I have given the Sample Pbix file link below. Hope this helps you.

 

Download pbix file

View solution in original post

3 REPLIES 3
Anonymous
Not applicable

Hi @Hussard

The following way you can get your solution easily.

  1. Go to the Edit Query option under the ribbon pallet.
  2. Create a duplicate column from the existing column.
  3. Go to the Transform tab in Query editor and Select Split column By Delimeter within drop-down select Delimiter type as a "Custom Delimiter" and put "." in the box, then select Each occurrence of Delimeter under "Split at" option.
  4. Change the type of each Delimited column.
  5. Calculate the length of each Delimited column.
  6. Choose the Custom column option under the Add column option and write the below code.
  7. (if [FstPart Length]=1 then ("0" & [FstPart]) else [FstPart]) &
    (if [FstPart Length]=0 then "" else ".") &
    (if [SecPart Length]=1 then ("0" & [SecPart]) else [SecPart]) &
    (if [SecPart Length]=0 then "" else ".") &
    (if [ThrdPart Length]=1 then ("0" & [ThrdPart]) else [ThrdPart]) &
    (if [FrthPart Length]=0 then "" else ".") &
    (if [FrthPart Length]=1 then ("0" & [FrthPart]) else [FrthPart])
  8. Then Select "close & Apply" under the Home tab.

I have given the Sample Pbix file link below. Hope this helps you.

 

Download pbix file

Hi both,

 

Thanks a lot I tried both solutions and it suits me.

 

Regards

 

Sébastien

v-danhe-msft
Microsoft Employee
Microsoft Employee

Hi @Hussard,

Based on my test, you could refer to below steps:

Sample data:

1.PNG

Create 5 columns:

B = IF(PATHITEM(SUBSTITUTE('Table2'[A],".", "|"), 1)=BLANK(),BLANK(),IF(LEN(PATHITEM(SUBSTITUTE('Table2'[A],".", "|"), 1))<2,"0"&PATHITEM(SUBSTITUTE('Table2'[A],".", "|"), 1),PATHITEM(SUBSTITUTE('Table2'[A],".", "|"), 1)))
C = IF(PATHITEM(SUBSTITUTE('Table2'[A],".", "|"), 2)=BLANK(),BLANK(),IF(LEN(PATHITEM(SUBSTITUTE('Table2'[A],".", "|"), 2))<2,".0"&PATHITEM(SUBSTITUTE('Table2'[A],".", "|"), 2),PATHITEM(SUBSTITUTE('Table2'[A],".", "|"), 2)))
D = IF(PATHITEM(SUBSTITUTE('Table2'[A],".", "|"), 3)=BLANK(),BLANK(),IF(LEN(PATHITEM(SUBSTITUTE('Table2'[A],".", "|"), 3))<2,".0"&PATHITEM(SUBSTITUTE('Table2'[A],".", "|"), 3),"."&PATHITEM(SUBSTITUTE('Table2'[A],".", "|"), 3)))
E = IF(PATHITEM(SUBSTITUTE('Table2'[A],".", "|"), 4)=BLANK(),BLANK(),IF(LEN(PATHITEM(SUBSTITUTE('Table2'[A],".", "|"), 4))<2,".0"&PATHITEM(SUBSTITUTE('Table2'[A],".", "|"), 4),"."&PATHITEM(SUBSTITUTE('Table2'[A],".", "|"), 4)))
New A = Table2[B]&Table2[C]&Table2[D]&Table2[E]

Result :

1.PNG

 

You could also download the pbix file to have a view.

 

Regards,

Daniel He

 

 

Community Support Team _ Daniel He
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

Check out the June 2025 Power BI update to learn about new features.

June 2025 community update carousel

Fabric Community Update - June 2025

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