T
TKM
I have several Rows and Columns. I have each row become visible if a check is
placed in an option box. If an entire row is not visable (no matter what row
it may be). how do I get the rows under it to take its place so there is no
blank rows.
Example:
.........Column 1.......Column 2............Column 3
1........XXX..............XXXX..................XXX.
2---If no check in check box then move row 3 into this spot so it is not
blank!
3.........XXX..............XXX..............r...XXX.
Here is what the code looks like to make the rows or fields visible..
'Below is fired via the optionbox IsDisplayIncome
Me.[OneMileIncome].Visible = Nz(Me.[IsDisplayIncome], True)
Me.[ThreeMileIncome].Visible = Nz(Me.[IsDisplayIncome], True)
Me.[FiveMileIncome].Visible = Nz(Me.[IsDisplayIncome], True)
placed in an option box. If an entire row is not visable (no matter what row
it may be). how do I get the rows under it to take its place so there is no
blank rows.
Example:
.........Column 1.......Column 2............Column 3
1........XXX..............XXXX..................XXX.
2---If no check in check box then move row 3 into this spot so it is not
blank!
3.........XXX..............XXX..............r...XXX.
Here is what the code looks like to make the rows or fields visible..
'Below is fired via the optionbox IsDisplayIncome
Me.[OneMileIncome].Visible = Nz(Me.[IsDisplayIncome], True)
Me.[ThreeMileIncome].Visible = Nz(Me.[IsDisplayIncome], True)
Me.[FiveMileIncome].Visible = Nz(Me.[IsDisplayIncome], True)