I want serial no. in excel based on other column .

sharmadeepu0500

New Member
Joined
Aug 8, 2023
Messages
2
Office Version
  1. 2007
Platform
  1. Windows
I want serial no. in excel based on other column .
I have a problem like below:-


Item codePriceStatus
23501
24002
25003
51501
52602
52602
55503
71001

Where i want result as shown in column Status . How to do that.
 

Excel Facts

Save Often
If you start asking yourself if now is a good time to save your Excel workbook, the answer is Yes
In C2, use
Code:
=SUMPRODUCT(IF($A$2:$A$9=A2,1/COUNTIFS($A$2:$A$9,A2,$B$2:$B$9))
With A2:A9 is code, B2:B9 is price
 
Upvote 0
Hi, if you can guarantee that your data is always sorted by item code and then price, you could also try this.

Book1
ABC
1Item codePriceStatus
223501
324002
425003
551501
652602
752602
855503
971001
Sheet1
Cell Formulas
RangeFormula
C2:C9C2=IF(A2=A1,IF(B2=B1,C1,C1+1),1)
 
Upvote 0
Welcome to the MrExcel Message Board!

Cross-posting (posting the same question in more than one forum) is not against our rules, but the method of doing so is covered by #13 of the Forum Rules.

Be sure to follow & read the link at the end of the rule too!

Cross posted at: I want serial no. in excel based on other column .
There is no need to repeat the link(s) provided above but if you have posted the question at other places, please provide links to those as well.

If you do cross-post in the future and also provide links, then there shouldn’t be a problem.
 
Upvote 0
Hi, if you can guarantee that your data is always sorted by item code and then price, you could also try this.

Book1
ABC
1Item codePriceStatus
223501
324002
425003
551501
652602
752602
855503
971001
Sheet1
Cell Formulas
RangeFormula
C2:C9C2=IF(A2=A1,IF(B2=B1,C1,C1+1),1)
thanx
 
Upvote 0

Forum statistics

Threads
1,215,454
Messages
6,124,931
Members
449,195
Latest member
Stevenciu

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