The values must match the order of the parameters in the data source (The order can be verified using the [Validation Report](/wTroubleshoot/Reports.html#validation-report-for-interject-events) )
If Blank
Data is not filtered
Excel Formula Bar Example
=ReportLookup(jDataPortal("NorthwindCustomers",1,"[CustomerID] Like '%SAVE%'"),C14,H1)
Function Composition
Argument Name
Example Mapping
Explanation
Function Name
=ReportLookup()
The name of this function.
DataPortal
"jDataPortal("NorthwindCustomers",1,"[CustomerID] Like ‘%SAVE%’)"
Uses the helper function jDataPortal() designating the "NorthwindCustomers" Data Portal. Filters the records to include only those whose CustomerID contains the string "save".
TargetDataRange
C14
Data will be inserted to cell C14.
ColDefRange
H1
The column name in H1 will be the data field that is returned from the data source.
Parameters
N/A
The data returned from the data source will not be filtered.