Excel 2010-What method to use to identify info missing or in error?

EvanDef

New Member
Joined
Jan 6, 2014
Messages
21
Hello Excel Gurus!

Thanks to anyone who can point me in the right direction.

I have been tasked to create a "smart" data collection form in excel 2010 where a user inputs collected info from a call. The form is divided into 5 main sections with as few as 6 and as many as 26 manually input variables in each section. The variables are either simple 2 to 4 category validation tables or manual text entry. The smart aspect would be for Excel to validate the required variables within the section to determine if the form was completed properly and then display a statement at the end of the section advising accuracy ir error.

I started a formula from the "accuracy statement" field of a section with 14 variables. The nested IF formula is quite long and continues to give me errors and FALSE readings.

Am I going about this the wrong way, is there a better solution? I hope I have provided enough information, if not I can add what may be missing.

Thanks for your time,Ii appreciate anyone who can lend a hand!

Evan
 

Excel Facts

Which lookup functions find a value equal or greater than the lookup value?
MATCH uses -1 to find larger value (lookup table must be sorted ZA). XLOOKUP uses 1 to find values greater and does not need to be sorted.
Have you considered using a VBA macro to test instead? Perhaps could use a Select Case to test for the required fields and then tie the macro to a button they can hit to verify all fields were entered.
 
Upvote 0
Hello KB, Thanks for the reply. I did fear that was the answer I was going to get, as I am not that strong with VBA just yet. I do have two copies of the template. I have been playing with formula's and VBA in one and then move the working application over to the master template. Need to strengthen my VBA skills.
 
Upvote 0
If you're still learning VBA, then perhaps a longer If Then statement might be a good place to start. For instance, if Name was in A2 and Address in B2, you could do something like this:
Code:
If ISBLANK(Range("A2")) = True Then
msgBox "Name not entered"
ElseIf ISBLANK(Range("B2")) = True Then
msgBox "Address not entered"
End If
 
Upvote 0

Forum statistics

Threads
1,215,491
Messages
6,125,108
Members
449,205
Latest member
ralemanygarcia

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