excel vba to give category titles to each group of items

BORUCH

Well-known Member
Joined
Mar 1, 2016
Messages
528
Office Version
  1. 365
Platform
  1. Windows
Hi all

i would like an excel VBA that puts in cell B3 FRUITS and in cell B11 vegetables etc..

Book1
ABC
1ITEM #DESCRIPTION CATEGORY
2
3
4
5
6APPLESFRUITS
7BANANASFRUITS
8PEARS FRUITS
9WATERMELONFRUITS
10
11
12
13TOMATOES VEGETABLE
14CUCUMBERS VEGETABLE
Sheet1


The results should like like below

Book1
ABC
1ITEM #DESCRIPTION CATEGORY
2
3FRUITS
4
5
6APPLESFRUITS
7BANANASFRUITS
8PEARS FRUITS
9WATERMELONFRUITS
10
11VEGETABLE
12
13TOMATOES VEGETABLE
14CUCUMBERS VEGETABLE
Sheet1
Cell Formulas
RangeFormula
B3B3=C6
B11B11=C13


Thanks
 

Excel Facts

Last used cell?
Press Ctrl+End to move to what Excel thinks is the last used cell.
Would it be ok to put Fruits in B4 so there is 1 blank row below each word?
 
Upvote 0
In that case, how about
VBA Code:
Sub Boruch()
   Dim Rng As Range
  
   For Each Rng In Range("C2", Range("C" & Rows.Count).End(xlUp)).SpecialCells(xlConstants).Areas
      Rng.Offset(-2, -1).Resize(1).Value = Rng(1).Value
   Next Rng
End Sub
 
Upvote 0
In that case, how about
VBA Code:
Sub Boruch()
   Dim Rng As Range
 
   For Each Rng In Range("C2", Range("C" & Rows.Count).End(xlUp)).SpecialCells(xlConstants).Areas
      Rng.Offset(-2, -1).Resize(1).Value = Rng(1).Value
   Next Rng
End Sub
Thanks
 
Upvote 0
You're welcome & thanks for the feedback.
 
Upvote 0

Forum statistics

Threads
1,215,165
Messages
6,123,391
Members
449,098
Latest member
ArturS75

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