M
Mally
Thank you to Excel MVP Ron Coderre for the following formula. This is to
used to show if cells A1:A3 are the same then I want to CONCATENATE cells
B1:B3 into
cells D13 and C1:C3 into E1:E3
If Row_1 can contain headings and your data can start in Row_2...
Try this:
D2: =IF($A2<>$A1,B2,"")&IF($A2=$A3,B3,"")&IF($A2=$A4,B4,"")
Some cells contain the same words then these are repeated. Is it possible
for just one of unique values to be displayed. Currently my results look
like this
YesYesYesYesTrafficTraffic
I want it to look like this
Yes Traffic
with a space in between
etc.
Thank you again
used to show if cells A1:A3 are the same then I want to CONCATENATE cells
B1:B3 into
cells D13 and C1:C3 into E1:E3
If Row_1 can contain headings and your data can start in Row_2...
Try this:
D2: =IF($A2<>$A1,B2,"")&IF($A2=$A3,B3,"")&IF($A2=$A4,B4,"")
Some cells contain the same words then these are repeated. Is it possible
for just one of unique values to be displayed. Currently my results look
like this
YesYesYesYesTrafficTraffic
I want it to look like this
Yes Traffic
with a space in between
etc.
Thank you again