Forum Discussion
asamr
4 years agoHelper I
Column written in CAPS-lock
Dear PBI Community I want to make a new Column. If Company Name is written with FULL CAPS LOCK then then write the company name in a new column. Company Name can contains numbers, all let...
- Anonymous4 years ago
Click the "Add Column" button, name the new column whatever, and in the box, type:
if [Company Name] = Text.Upper([Company Name]) then [Company Name] else null
--Nate
Anonymous
4 years agoNot applicable
Click the "Add Column" button, name the new column whatever, and in the box, type:
if [Company Name] = Text.Upper([Company Name]) then [Company Name] else null
--Nate
- asamr4 years agoHelper I
Dear Anonymous
I didnt think of that, thank you.