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

Compete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.

Reply
SanketBhagwat
Solution Sage
Solution Sage

Create custom column using IF/SWITCH and LEN function.

Hi.

I want to create a custom column wherein I have to differentiate between licensed and unlicensed companies.

Condition for licensed/unlicensed companies is such that ,

If length(license no.>3) then "LIcensed" else "Unlicensed".

 

If someone knows how to solve this, then do let me know.

 

Regards,

Sanket Bhagwat

1 ACCEPTED SOLUTION
Fowmy
Super User
Super User

 

@SanketBhagwat 

You column will be 

License Status = If( LEN(Table[license no.]) > 3 ,  "LIcensed"  ,  "Unlicensed")

 

Did I answer your question? Mark my post as a solution! and hit thumbs up


Subscribe and learn Power BI from these videos

Website LinkedIn PBI User Group

View solution in original post

2 REPLIES 2
Fowmy
Super User
Super User

 

@SanketBhagwat 

You column will be 

License Status = If( LEN(Table[license no.]) > 3 ,  "LIcensed"  ,  "Unlicensed")

 

Did I answer your question? Mark my post as a solution! and hit thumbs up


Subscribe and learn Power BI from these videos

Website LinkedIn PBI User Group

Thanks @Fowmy 

 

Helpful resources

Announcements
July PBI25 Carousel

Power BI Monthly Update - July 2025

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

August 2025 community update carousel

Fabric Community Update - August 2025

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

Top Solution Authors