Forum Discussion
lottie2404
3 years agoFrequent Visitor
Problems with my bd
Hello,
How can I do if I want the data in one of the columns of the DB to have a leading zero, but only for those with less than 4 digits?
1 Reply
- amitchandakSuper User
lottie2404 , you can check Len in dax
if( len([Column])> 4, <>, <> )
or
if( left([Column],4)=0 , <>, <> )