The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
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]