COMPULSORY CELLS???

  • Thread starter Thread starter Chris
  • Start date Start date
C

Chris

I'm trying to figure out a way to ensure that records are fully input. Is it
possible to ensure that when they begin entering data into a row that they
enter it in each cell (field)?

regards
 
Hi chris
to ensure this you'll have to create a userform. Though it's possible
to do a lot of checking with event procedures this is getting
complicated for checking many columns.
 
Hi Chris

You could make use of Data>Validation. Select the rows in question and
choose the "Formula" option. Then use:

=COUNTA(1:1)=256

In the case above, you would have selected row 1 along with a number of
others.

OR,

Try this code, should give you some ideas. To use it, right click on the
sheet name tab and select "View Code" and paste it in.

Private Sub Worksheet_Change(ByVal Target As Range)
If WorksheetFunction.CountA(Target.Row) <> 256 Then
MsgBox "Sorry, you must complete the row"
Target.Select
End If
End Sub

***** Posted via: http://www.ozgrid.com
Excel Templates, Training & Add-ins.
Free Excel Forum http://www.ozgrid.com/forum *****
 
Back
Top