Join us for an expert-led overview of the tools and concepts you'll need to pass exam PL-300. The first session starts on June 11th. See you there!
Get registeredPower BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.
Hello,
i am new in Power Bi and need help.....
i write a formula to be updated based on two other colunms (Time Columns with format HH:MM) , it worked perfect but the problem it retrun the 00:00 value in the final_time with blank and that make a problem in the charts. any help .....
i need it to return same value "00:00"
Final_Time = IF(Source[Day_time]=BLANK(),IF(Source[Day_time2]=BLANK(),Source[Day_time],Source[Day_time2]),IF(Source[Day_time]=BLANK(),Source[Day_time2],Source[Day_time]))
Best rgards
Hesham
Solved! Go to Solution.
You might try using CONCATENATE with a "" when returning values to make your end result column Text, so something like:
IF(Source[Day_time]=BLANK(), IF(Source[Day_time2]=BLANK(), CONCATENATE(Source[Day_time],""), CONCATENATE(Source[Day_time2]),""), IF(Source[Day_time]=BLANK(), CONCATENATE(Source[Day_time2],""), CONCATENATE(Source[Day_time]),"") )
You might try using CONCATENATE with a "" when returning values to make your end result column Text, so something like:
IF(Source[Day_time]=BLANK(), IF(Source[Day_time2]=BLANK(), CONCATENATE(Source[Day_time],""), CONCATENATE(Source[Day_time2]),""), IF(Source[Day_time]=BLANK(), CONCATENATE(Source[Day_time2],""), CONCATENATE(Source[Day_time]),"") )
Many Thanks Smoupre for your efforts, i got the idea and did work around by update it from another dummy table.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
81 | |
76 | |
61 | |
37 | |
33 |
User | Count |
---|---|
99 | |
56 | |
50 | |
42 | |
40 |