I’m making a search engine with an Oracle database with approximately 300,000 records, I understand that due to delegation issues I must use this function so that it searches the entire database
SortByColumns(Distinct('DWJAMAR.TRAFICO_MALLAGRAMA';AGENCY);"Result")
The issue is that in the database I have a "date" column with the following structure: 2021-06-17 00:00:00.000
The search engine must search by specific year and month but when I try with the function:
SortByColumns(Distinct('DWJAMAR.TRAFICO_MALLAGRAMA';Left(Text(DATE; "yyyy-mm-dd");4));"Result")
It only brings me the year 2021, when in the database I have the years 2021 and 2022,
If instead I create my filters with the items: [“2021”;”2022”]
And I apply the filter function:
Filter('DWJAMAR.TRAFFIC_MALLAGRAMA';
Text(AGENCY) = Dropdown2.Selected.Value;
Text(Left(Text(DATE; "yyyy-mm-dd");4)) = Dropdown2_1.Selected.Value;
Mid(Text(DATE; "yyyy-mm-dd");6;2) = Dropdown2_2.Selected.Value)
I’m getting a delegation issue where it only shows me the first 2000 records.
Help me! Please

Report
All responses (
Answers (