transition remark

lamchoria79

New Member
Joined
Mar 3, 2017
Messages
5
[TABLE="width: 173"]
<colgroup><col><col></colgroup><tbody>[TR]
[TD]Col 1[/TD]
[TD]Col 2[/TD]
[/TR]
[TR]
[TD]7/8[/TD]
[TD] [/TD]
[/TR]
[TR]
[TD]5/8[/TD]
[TD]7/8x 5/8 [/TD]
[/TR]
[TR]
[TD]7/8[/TD]
[TD]5/8 x 7/8[/TD]
[/TR]
[TR]
[TD]7/8[/TD]
[TD]7/8 x 3/4[/TD]
[/TR]
[TR]
[TD]3/4[/TD]
[TD] [/TD]
[/TR]
[TR]
[TD]3/4[/TD]
[TD] [/TD]
[/TR]
[TR]
[TD]3/4[/TD]
[TD] [/TD]
[/TR]
[TR]
[TD]3/4[/TD]
[TD]3/4 x 7/8[/TD]
[/TR]
[TR]
[TD]7/8[/TD]
[TD] [/TD]
[/TR]
</tbody>[/TABLE]

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

How to show all formulas in Excel?
Press Ctrl+` to show all formulas. Press it again to toggle back to numbers. The grave accent is often under the tilde on US keyboards.
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,224,823
Messages
6,181,182
Members
453,020
Latest member
Mohamed Magdi Tawfiq Emam

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