Paste values from 3 cells into one cell with delimiters in excel -


i have following data c columns:

          b       c     -5.274  -20.63  9.251 

where each number in different cell.

i want combine these numbers in following way , paste them new cell (those of column d)

-5.274 (-20.63 − 9.251) 

how can this?

you can't copy , paste them that, can easily:

d2: =a2 & " (" & b2 & " - " & c2 & ")"


Comments

Popular posts from this blog

OpenCV OpenCL: Convert Mat to Bitmap in JNI Layer for Android -

python - How to remove the Xframe Options header in django? -

android - org.xmlpull.v1.XmlPullParserException: expected: START_TAG {http://schemas.xmlsoap.org/soap/envelope/}Envelope -