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

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
Marcox28
Helper II
Helper II

transform value into char 4

Hi I have values ​​in a table that are char 3 or 2, how can I change in char 4?

example : 170 I want to turn it into 0170

 

Cattura.JPG

2 REPLIES 2
v-jiascu-msft
Employee
Employee

Hi @Marcox28,

 

You can also try the function FORMAT.

Column = FORMAT([Column1], "0000")

transform_value_into_char_4

 

Best Regards,

Dale

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

Hi,

 

As per your question your values are either of 2 or 3 characters. You can use concatenate function. create a column where you should check length of your character. If it is less than 3 then concatenate it with "00" and if length of character =3 then concatenate it with "0".

 

check the below expression if this works as per your requirements.

 

column = if(LEN(your field)<3,CONCATENATE("00",your field),if(LEN(your field)=3,CONCATENATE("0",your field))). Check teh screenshot below.

 

concat.png

 

Thanks,

Atish

Helpful resources

Announcements
RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.

MayPowerBICarousel

Power BI Monthly Update - May 2024

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

LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.