klsblues
Member
- Local time
- Today, 15:45
- Joined
- Aug 2, 2023
- Messages
- 48
I have a weird issue with a database I’ve written. I have a table called tblQuote which contains the Quote details (Header info) and a tblQuickQuote which contains the individual lines for each quote (The tables are linked by QuoteId in the tblQuote).
I have a form with the main quote details which contains a subform for the individual lines, linked by the QuoteID. As the individual line is added in the subform, there are 3 fields in the subform footer that totals the different costs and there is a bit of VBA on the After Update property of the subform that puts the total values from the subform footer, into the main form fields:
Private Sub Form_AfterUpdate()
Me.Recalc
Me.Parent.QuotePrice1 = Me.TtlCostVatInc
Me.Parent.QuotePrice2 = Me.TtlCostNoVat
Me.Parent.QuotePrice3 = Me.TtlCostNoCharge
End Sub
It has all been working well but an end user called me to say that he reached a certain number of lines and the main quote shows £0.00.
After investigation, I have established that if you add any lines to the subform that requires more screen space than is shown (i.e. you need t use the scroll bar on the subform), the calculation works in the subform footer, but it changes the QuotePrice1, 2 & 3 in the main form to £0.00.
To test this, I originally had the subform showing 10 lines before the scroller was needed and if you added an 11th line, the QuotePrice1 field on the main form went to £0.00. I changed the subform to show 23 lines and it worked fine until you added a 24th line, again , when the scroller was needed.
Thanks in advance for any ideas!
I have a form with the main quote details which contains a subform for the individual lines, linked by the QuoteID. As the individual line is added in the subform, there are 3 fields in the subform footer that totals the different costs and there is a bit of VBA on the After Update property of the subform that puts the total values from the subform footer, into the main form fields:
Private Sub Form_AfterUpdate()
Me.Recalc
Me.Parent.QuotePrice1 = Me.TtlCostVatInc
Me.Parent.QuotePrice2 = Me.TtlCostNoVat
Me.Parent.QuotePrice3 = Me.TtlCostNoCharge
End Sub
It has all been working well but an end user called me to say that he reached a certain number of lines and the main quote shows £0.00.
After investigation, I have established that if you add any lines to the subform that requires more screen space than is shown (i.e. you need t use the scroll bar on the subform), the calculation works in the subform footer, but it changes the QuotePrice1, 2 & 3 in the main form to £0.00.
To test this, I originally had the subform showing 10 lines before the scroller was needed and if you added an 11th line, the QuotePrice1 field on the main form went to £0.00. I changed the subform to show 23 lines and it worked fine until you added a 24th line, again , when the scroller was needed.
Thanks in advance for any ideas!