If txt_Sex on Main Report = "M" then I want the recordsource of Subreport1 to be q_Male else q_Female.
If Parent!txt_Sex = "M" Then
Me.RecordSource = q_Male
Else
Me.RecordSource = q_Female
End If
Is this the correct code?
Do I place it in the subreport? If so, on which event?
Any...
Good advice as always. I will do that. The problem was in my Insert query. A space where it shouldn't be.
For Each varitm In lst_Modalities.ItemsSelected
sql1 = "Insert into tbl_Note_ST_DDD_Modalities (Note_Id, Client_Id, Client_Name, Modalities) "
sql1 = sql1 & "select " &...
@MajP - As you suspected, there was a space at the end of the strings. That's why it wasn't working. All is good now. Thank you very much for your help!
@MajP - Thank you for your help. I will try everything you suggested. I just reran the code. The code seems to be looping as it should but the matches don't get selected. There are 18 options and two that have been selected. See below.
List Value: Tactile selection Seleced: Tactile selection...
@MajP - 2 problems: The first match "Referential signaling" doesn't get sent to True. The second issue is that "Referential signaling" is one of 18 possible options - but it never gets to any of the other options. It appears as though the NEXT isn't working.
List Value: Referential...
Hi All,
I use the following code in many different applications to display what has already been selected from a listbox while opening a form. It always works perfectly.
However, in this particular instance, all listbox values remain unselected.
This code is on the On Open event of my form. Can...
Thank you. Much needed article!
So, the Start_Time and End_Time displayed in the snapshot of my table above is not an accurate representation of the data stored in that field. That's just wonderful!
Is there anyway to get Access to display what is truly stored in the fields? This would be very...
My table looks like this. Start_Time and End_Time are both Date/Time fields set to a Long Time format.
The data in my table looks like this.
TherapistTheDateStart_TimeEnd_TimeClient_NameClient_IdUID
Jane Smith10/28/20258:30:00 AM9:30:00 AMDebbie Jones600123560
In Query...
Yes. Everyone is connected to a different printer. They are in different cities in 3 different states. The odd thing is that this application has been in production for about 3 years and the issue just started occurring this week. I will compare printer settings. Thank you.
I have a split database. The front end is distributed to about 150 people. Everything has been working as it should. However, this week I have 2 users who are getting the "The section width is greater than the page width" error when opening/printing a specific report. The report will have 4...