Click here to Skip to main content
15,896,154 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Dear ALL,


Suppose I am summing of excel columns. Then it will not sum but it must show
like
1+2+3+4+5
.
Posted

1 solution

You could use something like:
=TEXT(A1, "d") & "+" & TEXT(A2, "d") & "+" & TEXT(A3, "d")

But you would probably need to write a macro to do it for a variable number of cells.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900