I have a text box that shows the forms list box record count using this code in the text box control source.
=Count(*) & " " & "Total Records"
and the text box shows "76 Total Records"
I also have a label box at the top of the form telling you the name of the current table you are looking at. There are several tables you can access and this forms label.caption changes to the table name and the form displays all the associated records in the list box for that table.
I would like the labels caption to show at the end of the text box code so it would look like this
76 Total Records for Notes Table.
76 being the forms list box record count and "Notes" being the forms label box caption.
I have tried several ways to get the label.caption at the end of the textbox record count but can't make it work.
Can someone help please.
=Count(*) & " " & "Total Records"
and the text box shows "76 Total Records"
I also have a label box at the top of the form telling you the name of the current table you are looking at. There are several tables you can access and this forms label.caption changes to the table name and the form displays all the associated records in the list box for that table.
I would like the labels caption to show at the end of the text box code so it would look like this
76 Total Records for Notes Table.
76 being the forms list box record count and "Notes" being the forms label box caption.
I have tried several ways to get the label.caption at the end of the textbox record count but can't make it work.
Can someone help please.