So far I've managed to concatenate cells I1 and J1 with the words "From" and "To" and put them on separate lines using:
=CONCATENATE("From: ",I1," ","To: ",J1)
I've also managed to populate column L (only if there is data in column H) using this:
=IF(H1="","","Notes: " & H1)
Now, I'd like to populate column M with these two formulas combined, but I'm lost in a maze of IF statements which don't work:
=IF(H1="","","Notes: " & H1,"",if(I1="","","From: " & I1," ",if(J1="","","From: " & J1)))
