sounds like you are trying to apply excel logic to a database, which won't work - also looks like your table is not normalised - I would expect rcpIngredients to be in a separate table as perhaps would NutrionalInfo. And don't know what count is - other than it is a reserved word so could cause issues.
Assuming you just have the one table, what I would expect you to have is:
Code:
- a unique ID (autonumber and primary key) field in your table - if not there, add it in
- a single form with a recordsource of your table Recipies with controls for each field you want to see, suitably sized to view the data
- combo8 would be unbound (no recordsource) with
- a rowsource of SELECT DISTINCT Category FROM Recipes ORDER BT Category
- columncount=1
- bound column=1
- in the afterupdate event of combo1 put some vba code - combo2.requery
- combo9 would also be unbound with
- a rowsource of SELECT ID, RcpName FROM Recipies WHERE Category=[combo8] ORDER BY RcpName
- columncount=2
- bound column=1
- columnwidth=0
- in the afterupdate event of combo9 put the following vba code
me.filter="[ID]=" &Combo2
me.filteron=true
that is all you should need to do
Once you have done that, please clarify if that resolves your longtext issue