concatenation - Concatenate time as text in Excel but ignore blank values -
i have several columns trying join in excel, including date , time. of rows have dates lot of time values blank.
at moment have following formula:
=concatenate(text(b2,"dd mmm yy "), text(c2,"[h]:mm"))
this works fine when have date , time (eg 13 nov 16 10:50) if time column blank value result midnight (eg 13 nov 16 0:00).
how can ignore blank values result displays (13 nov 16)?
apply empty check on cell value.
update formula -
=concatenate(if(isblank(b2),"",text(b2,"dd mmm yy ")), if(isblank(c2),"",text(c2,"[h]:mm")))
Comments
Post a Comment