Mass populating cells

mattyn

Board Regular
Joined
Apr 20, 2015
Messages
148
I have a worksheet that records Students and their progress through courses.


Each course has some modules, each module has some Training objectives (TO), each TO has some Enabling Objectives (EO) and each EO has some Key Learning Points (KLPs).

Each row starts with student name (col B), and as it moves right, has a cell for each KLP that I want to annotate with a Y or N depending on whether the student has completed it or not. As such, a nice wide spreadsheet.

There are a lot of KLPs - and at the end of instruction, I need the instructors to annotate the worksheet that all students have received all KLPs. If I can I want to do this in one click.

So I type the cell range in the name box, then type Y and ctrl-enter - which fills all the cells in the range with a "Y". I have made this a macro and assigned that to a button. All good - it fills each cell in that range with a Y - and if the answer should be N - the instructor can over type this quite easily. I am happy so far!

However, the table has up to 12 students - but I don't always have 12 students in a class. I want the macro to ignore rows where there is no student name.

I hope I have explained this adequately - if so, is what I want to do possible?

The macro is as follows - currently the range of cells is J10:M21

Sub Macro1()
'
' Macro1 Macro
'
'
Application.Goto Reference:="R10C10:R21C13"
Selection.FormulaR1C1 = "Y"
End Sub


Many thanks

Matt
 

Excel Facts

Wildcard in VLOOKUP
Use =VLOOKUP("Apple*" to find apple, Apple, or applesauce
If you are just targeting rows 10:21 then try (in a copy of your workbook)

Code:
Sub FillCells()
  Intersect(Range("B10:B21").SpecialCells(xlConstants).EntireRow, Columns("J:M")).Value = "Y"
End Sub

If you want all rows from 10 down that have names in column B then try
Code:
Sub FillCells()
  Intersect(Range("B10", Range("B" & Rows.Count).End(xlUp)).SpecialCells(xlConstants).EntireRow, Columns("J:M")).Value = "Y"
End Sub
 
Upvote 0
Thank you Peter - will that work with the existing macro & button?

I suppose what I mean is - where do i put that?
 
Last edited:
Upvote 0
Thank you Peter - will that work with the existing macro & button?

I suppose what I mean is - where do i put that?
If the "existing macro" is the one you posted, then just replace the 2 lines of code in the body of that macro with the one line of code in the body of mine.
 
Upvote 0

Forum statistics

Threads
1,215,472
Messages
6,125,003
Members
449,203
Latest member
Daymo66

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