Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
Hello. I am pretty new here so please forgive me if I post in the wrong place, etc. But onto my issue. I have a calculated column that assigns a time interval to each row. I now need it to look at another column if the original column is blank....and I can't seem to get it working. This is edad I have in my original calculated column
= Table.AddColumn(#"Changed Type", "Custom", each Time.From(Text.From(Time.Hour(Time.From([paidTime])))&":"&(if Time.Minute(Time.From([paidTime]))>= 30 then "30" else "0")&":00"))
any help would be greatly greatly appreciated. Thank you.
Solved! Go to Solution.
Hi, @YcnanPowerBI
Try this updated code,
= Table.AddColumn(#"Changed Type", "Custom", each
let
actualTime = if [paidTime] = "" then [otherTime] else [paidTime]
in
Time.From(Text.From(Time.Hour(Time.From(actualTime)))&":"&(if Time.Minute(Time.From(actualTime)) >= 30 then "30" else "0")&":00")
)
Proud to be a Super User!
Hi, @YcnanPowerBI
Try this updated code,
= Table.AddColumn(#"Changed Type", "Custom", each
let
actualTime = if [paidTime] = "" then [otherTime] else [paidTime]
in
Time.From(Text.From(Time.Hour(Time.From(actualTime)))&":"&(if Time.Minute(Time.From(actualTime)) >= 30 then "30" else "0")&":00")
)
Proud to be a Super User!
It worked, thank you so much!
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
| User | Count |
|---|---|
| 19 | |
| 10 | |
| 9 | |
| 7 | |
| 6 |