I am using your "GetInvoices" API example to create an excel report that will populate data. The customer has requested that I create a date parameter for this information, but I have never been able to do this in the past.
Here is my code where the issue is coming up:
Dim STARTDATE As Date
S TARTDATE = Worksheets("RUN").Range("B8").Value
sSelectWhere = "ActivityType like 'OB%' and NOT(AnalyzorName is Null) and NOT(AnalyzorName = '') and (DueDateStart >= STARTDATE OR ActualCompletedDate >= STARTDATE)"
When I try to execute this report, I get an error: Error from the MethodAPI: Failure. The following fields do not exist in the Table Activity: 'STARTDATE', 'STARTDATE'.
I am hoping this is only a syntax issue on my part, because this would be extremely helpful to know.
Thanks in Advance!!