Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
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]
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.