Question : Requery or refresh a report

Experts, I have a report that has a hyperlink.  If click another form opens.  When I close out the form that opened I need to "refresh" the report.  

I have used ON Current and On activate: Me.Requery
but it does not refresh.  

Any other ideas?  

Answer : Requery or refresh a report

OK - it does not matter that the source and destination are the same.  

insert into myTable
(QuestId, MagId, ProfId, AnsId, Comments, GroupCode)
Select QuestId, MagId, 'new value for ProfId' as ProfId, AnsId, Comments, GroupCode
from
myTable T2
where T2.IsNew = 1    -- obviously, subsitute your own logic in the where clause

If you simply execute this against the server rather than bringing everything locally and iterating through each record it will be MUCH faster


Random Solutions  
 
programming4us programming4us