I need to create a formula that will allow me to combine (CONCACTENATE) data if a certain field is not null. Here is a sample of what I have tried but it does not work correctly.
=IF(Completion!C11,CONCATENATE(Completion!A12," - ",Completion!C12," ",Completion!D12,", ",Completion!E12),"")
What I am trying to make it do is:
* Check sheet Completion! in cell C11 for text value data.
* If not null, combine data from the specified cells and display it as specified.
I have tested the concactenate formula by itself and it works fine.
I am currently testing the IF formula.