I have a form and a subform is linked to it. The subform is in datasheet view. Does anyone know how to hide fields which have null value in the subform?
I have a table with more than 100 fields. I have a form and a subform is linked to it. Not all the fields have records in them. so i would like to hide those fields which have no value. Do u think i can be able to do it?
I have a table with more than 100 fields. I have a form and a subform is linked to it. Not all the fields have records in them. so i would like to hide those fields which have no value. Do u think i can be able to do it?
To begin with, a table with 100 fields is almost assuredly not Normalized. Most experienced developers will tell you that no table should have more that 25-30 fields, tops.
Secondly, I suspect that none of the 'fields' have record in them! Records have fields, fields don't have records.
ColumnHidden hides the entire column, not some of the column but not other parts.
To begin with, a table with 100 fields is almost assuredly not Normalized. Most experienced developers will tell you that no table should have more that 25-30 fields, tops.
What you have said is not strictly correct. I have seen a normalized tbl with nearly 200 flds. Most of these are flds that contain data that needs to be reported every 3 mths to a govt authority (flds are dynamic) so don't need a sub tbl.
What you have said is not strictly correct. I have seen a normalized tbl with nearly 200 flds. Most of these are flds that contain data that needs to be reported every 3 mths to a govt authority (flds are dynamic) so don't need a sub tbl.
In my experience (25+ years) with databases people who design databases with 100+ field tables that are normalised don't post questions on forums like this.
However People who have unnormalised tables with many fields often post here. Thats why Missinglinq and I react when we see very broad tables.