Forum Discussion
mkglen
Nov 01, 2023Copper Contributor
Problem with IF formula
I am trying to get column S to list pickup days if columns N, O, P, Q, R have a value in them. My formula =IF(N2<>"","M, ",IF(O2<>"","T, ",IF(P2<>"","W, ",IF(Q2<>"","H, ",IF(R2<>"","F, ",""))))) is o...
Heather970
Nov 01, 2023Copper Contributor
mkglen I have never seen the IF statement used that way, but here is a solution that nests if statements inside of the CONCAT function. =CONCAT(IF(N2<>"","M, ",""),IF(O2<>"","T, ",""),IF(P2<>"","W, ",""),IF(Q2<>"","TH, ",""),IF(R2<>"","F",""))
- mkglenNov 01, 2023Copper ContributorI am using Excel 2016 so I had to use CONCATENATE but that worked. Thank you!