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
craghubi2020
Frequent Visitor

DAX for calculated column based on length of the characters

Hi,

Can you please help writing DAX for the below senerio. 

I have Column called 'C1' in T1 table. I want to create a new column called 'C2' in the same (T1) table based on length of the data in C1.

For example. column C1 is having data with character lenght between 8 to 25.

If length of C1 is > 8 characters, then it is 'Apple' in 'C2' column, if the length of C1 is lower than 8 charcters, it is Banana in 'C2' column.  

1 ACCEPTED SOLUTION
V-lianl-msft
Community Support
Community Support

Please create a calulated column like below:

C2 = IF(LEN('Table'[C1])>8,"Apple","Banana")

V-lianl-msft_0-1619661474210.png

 

View solution in original post

1 REPLY 1
V-lianl-msft
Community Support
Community Support

Please create a calulated column like below:

C2 = IF(LEN('Table'[C1])>8,"Apple","Banana")

V-lianl-msft_0-1619661474210.png

 

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.