Add up the values of duplicate cells
Solved/Closed
Sumit
-
May 17, 2010 at 07:04 AM
rizvisa1 Posts 4478 Registration date Thursday January 28, 2010 Status Contributor Last seen May 5, 2022 - May 19, 2010 at 04:58 AM
rizvisa1 Posts 4478 Registration date Thursday January 28, 2010 Status Contributor Last seen May 5, 2022 - May 19, 2010 at 04:58 AM
Related:
- Add up the values of duplicate cells
- 2007 microsoft office add-in microsoft save as pdf or xps - Download - Other
- How to add @ in laptop - Guide
- How to add songs to sound picker - Guide
- Add messenger to home screen - Guide
- How to add photo in word resume - Guide
2 responses
rizvisa1
Posts
4478
Registration date
Thursday January 28, 2010
Status
Contributor
Last seen
May 5, 2022
766
May 17, 2010 at 07:08 AM
May 17, 2010 at 07:08 AM
rizvisa1
Posts
4478
Registration date
Thursday January 28, 2010
Status
Contributor
Last seen
May 5, 2022
766
May 19, 2010 at 04:58 AM
May 19, 2010 at 04:58 AM
You can use SUMIF on the worksheet
=IF(A1<>"",SUMIF(C:C,A1,D:D), "")
or in VBA
range("b1:b4").formulaR1C1="=IF(RC1<>"""",SUMIF(C3:C3,RC1,c4:c4), """")"
=IF(A1<>"",SUMIF(C:C,A1,D:D), "")
or in VBA
range("b1:b4").formulaR1C1="=IF(RC1<>"""",SUMIF(C3:C3,RC1,c4:c4), """")"