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

July 7 - July 17 | Round 2 of the Power BI Dataviz World Championships. Don't miss your chance! Learn more

Reply
extri13
Helper I
Helper I

[DAX] Format function seems not working

Dear all,

 

Format function seems not working like below capture screens.

Would anyone please clear which is wrong ; me or Power Bi?

Below is my purpose and problem details.

 

Purpose

  • Want to show week numbers continued by last week of last year on X-axis (i.e. '15 W51  |  '15 W52  |  '16 W1  |  '16 W2 )
  • Try to Concatenate the Year and Week numbers for using X-axis
  • Try to change Year and Week numbers to text for using Concatenate parameters 

Problems

  • The function Format in DAX does not work rightly like below
  • Parameter "G" as General Number changes all the number to string just "G" (Figure #1)
  • Parameter #### as 4 digit numbers returns error message (Figure #2)

 

Figure #1

DAX_Function_Format 2.PNG     

 

Figure #2

 DAX_Function_Format.PNG

 

 

 

 

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @extri13,

Firstly, there are several syntax errors in your formula, please change it to the following formula.

TEST = FORMAT( [no], "General Number") 
Capture1.PNG

Secondly, do you want to pick the last 4 digit numbers from your column in the second screenshot? If that is the case, you can use the following formula.

Test = RIGHT( [no], 4) 
Capture.PNG


However, if the above formula doesn’t meet your requirement, please describe more details about which format of data you want to return.

In addition, for more details about how to use Format function, please review the following articles.
https://msdn.microsoft.com/en-us/library/ee634924.aspx
https://msdn.microsoft.com/en-us/library/ee634561.aspx

Thanks,
Lydia Zhang

View solution in original post

1 REPLY 1
Anonymous
Not applicable

Hi @extri13,

Firstly, there are several syntax errors in your formula, please change it to the following formula.

TEST = FORMAT( [no], "General Number") 
Capture1.PNG

Secondly, do you want to pick the last 4 digit numbers from your column in the second screenshot? If that is the case, you can use the following formula.

Test = RIGHT( [no], 4) 
Capture.PNG


However, if the above formula doesn’t meet your requirement, please describe more details about which format of data you want to return.

In addition, for more details about how to use Format function, please review the following articles.
https://msdn.microsoft.com/en-us/library/ee634924.aspx
https://msdn.microsoft.com/en-us/library/ee634561.aspx

Thanks,
Lydia Zhang

Helpful resources

Announcements
FabCon and SQLCon Barcelona 2026

FabCon & SQLCon – Barcelona 2026

Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.

60 days of Data Days Carousel

Data Days 2026

Join Data Days 2026: 60 days of free live/on-demand sessions, challenges, study groups, and certification opportunities.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

Top Solution Authors