> Portal Navigation: > > - Append `.md` to any URL under `https://dev.wix.com/docs/` to get its markdown version. > - Pages are either content pages (article or reference text) or menu pages (a list of links to child pages). > - To get a menu page, truncate any URL to a parent path and append `.md` (e.g. `https://dev.wix.com/docs/sdk.md`, `https://dev.wix.com/docs/sdk/core-modules.md`). > - Top-level index of all portals: https://dev.wix.com/docs/llms.txt > - Full concatenated docs: https://dev.wix.com/docs/llms-full.txt # Method name: countTasks(options: CountTasksOptions) # Method package: wixCrmV2 # Method menu location: wixCrmV2 --> tasks --> countTasks # Method Link: https://dev.wix.com/docs/velo/apis/wix-crm-v2/tasks/count-tasks.md # Method Description: Counts the number of tasks. This method returns the count of all tasks regardless of their `status`. Optionally, you can specify a filter to count only tasks that meet certain criteria. # Method Code Examples: *** Note: do not assume any prop names or enum values other than the ones in the example. ## Count the total number of tasks (dashboard page code) ```javascript import { tasks } from 'wix-crm.v2'; export async function myCountTasksFunction() { try { const count = await tasks.countTasks(); return count; } catch(error){ console.log(error); // Handle the error } } /* Promise resolves to: * { * "count": 9 * } */ ``` ## Count the total number of tasks (export from backend code) ```javascript import { Permissions, webMethod } from 'wix-web-module'; import { tasks } from 'wix-crm.v2'; import { elevate } from 'wix-auth'; export const myCountTasksFunction = webMethod(Permissions.Anyone, async () => { try { const elevatedCountTasks = elevate(tasks.countTasks); const count = await elevatedCountTasks(); return count; } catch(error){ console.log(error); // Handle the error } }); /* Promise resolves to: * { * "count": 9 * } */ ``` ## Count the number of completed tasks ```javascript import { Permissions, webMethod } from 'wix-web-module'; import { tasks } from 'wix-crm.v2'; import { elevate } from 'wix-auth'; /* Sample options value: * { * 'filter' : { * 'status': 'COMPLETED' * } * } */ export const myCountTasksFunction = webMethod(Permissions.Anyone, async (options) => { try { const elevatedCountTasks = elevate(tasks.countTasks); const count = await elevatedCountTasks(options); return count; } catch(error){ console.log(error); // Handle the error } }); /* Promise resolves to: * { * "count": 9 * } */ ``` ---