Forum Discussion

Hesham's avatar
Hesham
Frequent Visitor
8 years ago
Solved

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...
  • Greg_Deckler's avatar
    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]),"")
    )