simple formula needed.

alvbnp

Board Regular
Joined
Jun 26, 2006
Messages
180
columnA | columnB
001 | 001
002 | 005
006 | 006

in columnC:
1. if columnA = columnB, show columnA value which is 001
2. if columnA <> columnB, show both column value as 002-005

Thanks.
 

Excel Facts

Did you know Excel offers Filter by Selection?
Add the AutoFilter icon to the Quick Access Toolbar. Select a cell containing Apple, click AutoFilter, and you will get all rows with Apple
Thanks dude.

Another question, anyway i can make it look 002-005? I have set the cell format to 000. For the 1st 001 it show fine. But for the 2nd, it show as 2-5. I would want to to show as 002-005.

Thanks.
 
Upvote 0
Assuming you will eventually get to double figures, meaning you can't add 00 to the "-" part of the formula :

One way would be a helper column for column B with the Formula =text(B1,"000") and have the IF Formula reference the helper column rather than Column B

There are likely other ways to achieve this, i throw it open to the forum!
 
Upvote 0
columnA | columnB
001 | 001
002 | 005
006 | 006

in columnC:
1. if columnA = columnB, show columnA value which is 001
2. if columnA <> columnB, show both column value as 002-005

Thanks.
Hi
try

=If(A1=B1,Text(A1,"000"),Text(A1,"000")&"-"&Text(B1,"000")
 
Upvote 0

Forum statistics

Threads
1,214,386
Messages
6,119,217
Members
448,876
Latest member
Solitario

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