I want to know how to write: If a list box on form "PaymentsDue" has more than 1 piece of data in it then make label1 on form "info" Visible = True. I know how to do the visible bit but not the on the other form bit. Can anyone help ?
If Forms!PaymentsDue!YourListBox.ListCount > 1 Then
Forms!info!Label1.Value = "There are ""There are " & Forms!PaymentsDue!List14.ListCount & " clients with payments Due including" & 'by here the names of a few in the list box.
Else
Forms!info!Label1.Visible = False
End If
So really I need to know how to say a value in the column "Name" of the listbox aswell. Thanks alot, Dan