Published at: 2026-09-17

APL custom calculation logic configuration guide


APL low-code custom development supports special calculation logic in BI. When the built-in aggregation methods do not cover your scenario, you can implement custom logic with APL and still display the results in BI charts.

Case 1: Target achievement check

Core custom development logic: Add a column named Meets Target. When the Account Opening Score is greater than or equal to 200, the column displays “1”. When the score is below 200, it displays “0”. (“1” means the target is met; “0” means it is not met.)

Case 2: Filter out special data

Core custom development logic: Filter out special data. In this case, for each account under each employee, remove the rows where the visit count is greater than 2, and then sum the visit counts of the remaining accounts.
Submit Feedback