Forum Discussion
learner03
4 years agoPost Partisan
If condition with OR
How can I create a column that says 1 for when Length of Document is 8 or when it is Blank and otherwise 0. I tried with this but it it giving me error- if(or(LEN('On Purchase'[Join]=8),LEN('On Pu...
ryan_mayu
4 years agoSuper User
i think the braket is not correct
pls try this
if(or(LEN('On Purchase'[Join] )=8,LEN('On Purchase'[Join] ) =0),1,0)