concatenation

charijit

Board Regular
Joined
Nov 27, 2003
Messages
89
Dear Members,

In a spreadsheet I have

A1 = Max(E1,F1,G1) = +24
B1 = Min(E2,F2,G2) = -25

I want C1 to show

C1 = +24/-25.

Kindly tell me how to do it.
 

Excel Facts

When did Power Query debut in Excel?
Although it was an add-in in Excel 2010 & Excel 2013, Power Query became a part of Excel in 2016, in Data, Get & Transform Data.
Thanks to Alladin and Barry. Although I could understand Barry's solution well because I don't know anything about arrays, but nonetheless I am grateful to both of you.
 
Upvote 0
Further to my above question, I wish to also discriminate between maxima's and minima's of the same sign. Like,

if, A1=max(......)=+25 and B1=min(.....)=-25 then C1=+25/-25 but what if A1=+26 and B1=+2 then C1=+26 only rather than C1=+26/+2.
 
Upvote 0
I assume you used Barry's solution:

Therefore change it to this:

=IF(A1>0,"+","")&A1&IF(B1>0,"","/"&B1)

And if you don't want 0 minimum to show, then:

=IF(A1>0,"+","")&A1&IF(B1>=0,"","/"&B1)
 
Upvote 0
Thank you NBVC for the solution (partial), but I think I didn't make things clear. By the way, I also understood Aladin's solution.

Here is what I meant:
If A1=+5 and B=+9 then C1=+9 (Maxima)
If A1=-5 and B=-9 then C1=-9 (Minima)
If A1=-9 and B=+2 then C1=-9/+2 (both maxima and minima)
It is also a requirement that if anyone of A1 or B1 is 0 then it should only show the maxima or minima with its sign.
 
Upvote 0

Forum statistics

Threads
1,214,585
Messages
6,120,399
Members
448,957
Latest member
Hat4Life

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top