Forum Discussion
Hesham
8 years agoFrequent Visitor
update blank Values in formula column
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...
- 8 years ago
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]),"") )
Greg_Deckler
8 years agoCommunity Champion
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]),"") )
Hesham
8 years agoFrequent Visitor
Many Thanks Smoupre for your efforts, i got the idea and did work around by update it from another dummy table.