Hello everyone,
I have this code here:
If IsNull(Forms!foPayroll!ExpenseText) Then
Me!ExpenseText.Visible = False
Else
Me!ExpenseText.Visible = True
End If
If IsNull(Forms!foPayroll!ExpenseAmount) Then
Me!Expenses.Visible = False
Else
Me!Expenses.Visible = True
End If
But I want that when this if clause is enforced not the visibility is changed but that another value becomes visible.
Thanks for the help!