The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
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
Solved! Go to Solution.
@SanketBhagwat
You column will be
License Status = If( LEN(Table[license no.]) > 3 , "LIcensed" , "Unlicensed")
⭕ Subscribe and learn Power BI from these videos
⚪ Website ⚪ LinkedIn ⚪ PBI User Group
@SanketBhagwat
You column will be
License Status = If( LEN(Table[license no.]) > 3 , "LIcensed" , "Unlicensed")
⭕ Subscribe and learn Power BI from these videos
⚪ Website ⚪ LinkedIn ⚪ PBI User Group