transition remark

lamchoria79

New Member
Joined
Mar 3, 2017
Messages
5
Col 1Col 2
7/8
5/87/8x 5/8
7/85/8 x 7/8
7/87/8 x 3/4
3/4
3/4
3/4
3/43/4 x 7/8
7/8

<colgroup><col><col></colgroup><tbody>
</tbody>

Hi everyone,
I need a helping hand. In my excel sheet, in col1 whenever value changes, i require a expression as shown in col 2. e.g. when in col 1 7/8 changes to 5/8 i require "7/8 x 5/8" in col 2. Also if value doesn't change then value in col2 should be blank.
 

Excel Facts

Does the VLOOKUP table have to be sorted?
No! when you are using an exact match, the VLOOKUP table can be in any order. Best-selling items at the top is actually the best.
Assuming there are headers in Row 1, place this formula in Cell B3
=IF(A3<>A2,CONCATENATE(A2," = ",A3," "),"")
 
Upvote 0
You requirements are inconsistent so are impossible to achieve or not completely specified:
on row 2 you have 7/8x 5/8 in column 2 , where row 1 changes to row 2 however on row 5 column 2 you have a blank, where row 4 changes to row 5 , ditto row 9
 
Upvote 0
You requirements are inconsistent so are impossible to achieve or not completely specified:
on row 2 you have 7/8x 5/8 in column 2 , where row 1 changes to row 2 however on row 5 column 2 you have a blank, where row 4 changes to row 5 , ditto row 9

I think the OP is looking for a way to store in B the current and previous value of A with the addition that when A has no previous value B is blank.

I don't think a formula will make this happen, but I also don't know the VBA to do it off hand.
 
Upvote 0

Forum statistics

Threads
1,215,472
Messages
6,125,011
Members
449,204
Latest member
tungnmqn90

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