Forum Discussion
Anonymous
3 years agoNot applicable
Add zero to value
Hi everyone!!!! Please help me. Do you know formula to create "custom" column the same picture? Thank you so much!!!!
- 3 years ago
pls try this
[ f = Text.Length([DATA]), to= if f < 3 then Text.Repeat("0",3-f) & [DATA] else [DATA] ][to]
Ahmedx
3 years agoSuper User
pls try this
[
f = Text.Length([DATA]),
to= if f < 3 then Text.Repeat("0",3-f) & [DATA] else [DATA]
][to]Anonymous
3 years agoNot applicable
Your solution is perfect. It helped me solve the problem. Thank you so much!!!