Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Please assist me using Power Query to create a custom column to Add a Leading Zero if Length = 1, else do nothing.
Solved! Go to Solution.
@sa34techer Add a custom column:
if Text.Length([Hours]) = 1 then "0" & [Hours] else [Hours]
@sa34techer Add a custom column:
if Text.Length([Hours]) = 1 then "0" & [Hours] else [Hours]
User | Count |
---|---|
8 | |
7 | |
5 | |
5 | |
4 |
User | Count |
---|---|
14 | |
13 | |
8 | |
6 | |
6 |