detriez
Board Regular
- Joined
- Sep 13, 2011
- Messages
- 193
- Office Version
- 365
- Platform
- Windows
I am trying to concatenate as follows
If F2 is not null, Concatenate F1 (header) and F2 CHAR(10) Else nothing
If G2 is not null, Concatenate G1 (header) and G2 CHAR(!0) Else nothing
If H2 is not null, Concatenate H1 (header) and H2 CHAR(10) Else nothing
This formula works but I can use help to string them together
If F2 is not null, Concatenate F1 (header) and F2 CHAR(10) Else nothing
If G2 is not null, Concatenate G1 (header) and G2 CHAR(!0) Else nothing
If H2 is not null, Concatenate H1 (header) and H2 CHAR(10) Else nothing
This formula works but I can use help to string them together
Code:
=IF(F2<>"",CONCATENATE(F1,F2),"")