The Teamwork Advanced Analytics connector comes bundled with over 50+ default reports and dashboards that will help you keep track of your Key Project Metrics. You can also create insightful reports & dashboards over your Teamwork data for in-depth project analysis.
Zoho Analytics is a self-service BI and data analytics software that lets you analyze your data, create stunning data visualizations, and discover hidden insights in minutes.
It offers the following important capabilities:
Teamwork Advanced Analytics Connector enables you to import your Project data into Zoho Analytics for advanced reporting and analysis. This connector brings in all the capabilities of Zoho Analytics described above to Teamwork users.
Any Teamwork user can configure this connector to effectively analyze their sales data.
As a Teamwork user, subscribing to this connector brings you immense benefits. You get to look at your Teamwork data in Teamwork in ways you haven't looked at before. Using this Zoho Analytics connector enables you to do powerful analysis of your Project data and create insightful reports & dashboards. You can create insightful reports Active milestones by users, Estimation vs actual time spent, Tasks overdue, Project completion rate and do much more with ease.
Zoho Analytics' drag-and-drop based reporting is so easy to use that you could create any report or dashboard on your Project data with no IT help or technical knowledge and share them to your colleagues.
Teamwork Advanced Analytics is available in all the paid plans of Zoho Analytics. Our pricing starts at $25 per month. Please do refer to the following link to learn more.
Anyone to whom you privately share your databases, tables (data), reports and dashboards, created in Zoho Analytics, for collaboration is considered a 'User' in Zoho Analytics. A user is identified by his/her unique email address, with which their Zoho Analytics account was registered.
Suppose you subscribe to the Zoho Analytics Standard plan, you can privately share the data/reports in your account and collaborate with 4 other persons. Now your Zoho Analytics account is said to have 5 users (including yourself). Click to know more about the Zoho Analytics user model.
In Zoho Analytics, a row or record is defined in the same context as in a database (or spreadsheet). In simple terms, a table consists of rows (records) and columns (fields). Each row in a table represents a set of related data and has the same structure. For example, in a table that represents "Invoices", each row would represent a single invoice record. The number of rows calculated for pricing, is the sum of all rows/records stored across all your database tables in your Zoho Analytics account.
The Account Administrator and the Organization Administrators can set up the Teamwork Analytics connector. Click here to learn about Managing Users .
The credentials of the Administrator who set up the connector, will be used for establishing any connections with source application by other administrators.
Also refer:
After configuring this connector, you might have to wait some time for the initial fetch to happen. You will receive an email notification once the import is complete. If you access the database before the initial fetch, it will not display any data.
You can choose to synchronize data at one of the intervals mentioned below.
Note:
Yes, The Account Administrator and the Organization Administrators can edit this setup. To do so,
Yes, you can synchronize your Project data instantly when needed.
To synchronize your data instantly:
Note: This option can be used to a maximum of five times a day.
It will be set up in the corresponding Zoho Analytics account of the Teamwork user who configured this connector.
Yes, the Account Administrator and the Organization Administrator can view the data sync history. Follow the below steps to view the data sync history.
Data from the following modules in Teamwork will get synchronized with Zoho Analytics.
Yes, you can import data from the projects across companies in Teamworks into the same Workspace.
Also refer:
By default, the reports you create are accessible only to you. However, you can share the reports with your colleagues using the 'Sharing' options available in Zoho Analytics. Refer How to Share Reports & Dashboards question.
Yes, you can configure multiple Teamwork setups if you have subscribed for a paid plan (Standard and above).
If you have purchased a Basic Plan, you will be able to import data only from one portal.
You can configure multiple Teamwork setups if you have subscribed for a paid plan (Standard and above). You can choose to import multiple portals in the same database or in a different database.
If you wish to import the data in an individual database refer to this question.
To import data from multiple portals into the same database,
Zoho Analytics supports a wide variety of reports.
Columns from across different tables that are related through a lookup column can be dragged and dropped to create a report. Refer to this help documentation to know how to join tables .
Refer to this presentation to know how to create reports.
Formulas, as the name indicates, are calculations that you could define in Zoho Analytics to help you create the required reports. Zoho Analytics provides a powerful formula engine to create any type of calculations required, to enable creating the required reports. Refer Adding Formulas in Zoho Analytics to know more.
You can also add your own formulas to derive your own calculations. Do refer to Adding Formulas in Zoho Analytics help page. You can view these formulas by opening the corresponding table and selecting Add > Edit.
The following are the formulas from the Milestones table
| Formula Name |
Formula |
Formula Type |
Description |
| Milestone Delay Time |
if (" Status "= 'late' , datediff ( currentdate ( ) ," Deadline "), null ) |
Custom |
Displays the delay in milestone completion |
The following are the formulas from the Tasks table
| Formula Name |
Formula |
Formula Type |
Description |
| Duration |
Custom |
datediff (" Due Date","Start Date ") + 1 |
Displays the time frame/duration of a particular task |
| Task Completion Mode |
Custom |
if ( datediff ( "Due Date","Completed On" ) > 0, 'On Time' , if (" Due Date "< now() ,
'Late','On Time' )) |
Displays if the task was completed on time or late |
| Actual Timetaken |
Custom |
if ( "Status"='completed' , datediff ( "Completed On","Start Date" )+1,
datediff ( currentdate( ) , "Start Date" )+1) |
Displays the time spent on the task |
| Time Spent So Far |
Custom |
ifnull (" Actual Timetaken ",0) |
Displays the total time spent on that task so far |
| Is Overdue Task |
Custom |
if ( "Status"!='completed' AND "Due Date" < Curdate () ,' Yes','No' ) |
Displays if the task is overdue or not. |
| Task Delay Time |
Custom |
if ( "Is Overdue Task"='Yes' , datediff ( now() ," Due Date "),0) |
Provides the overdue time of a task |
| Open Tasks Count |
Aggregate |
countif ( "Task"."Status"='completed' ,NULL, "Task"."Task Id" ) |
Displays the count of the open tasks |
| Closed Tasks Count |
Aggregate |
count ( if (" Task"."Status"='completed' , "Task"."Task Id" ,NULL)) |
Displays the count of the completed tasks |
| Open Tasks % |
Aggregate |
"Task"."Open Tasks Count" / count ( "Task"."Task Id ")*100 |
Displays the percentage of the open tasks |
| Closed Tasks % |
Aggregate |
"Task"."Closed Tasks Count" / count ( "Task"."Task Id" )*100 |
Displays the percentage of the completed tasks |
| High Priority Tasks Count |
Aggregate |
count ( if (" Task"."Priority"='high',"Task"."Task Id" ,NULL)) |
Displays the count of tasks that are on high priority |
| High Priority Tasks % |
Aggregate |
"Task"."High Priority Tasks Count" / count ( "Task"."Task Id" )*100 |
Displays the percentage of tasks that are on high priority |
| Open High Priority Tasks Count |
Aggregate |
countif ( "Task"."Priority"='High'
AND
"Task"."Status" != 'completed' ,
"Task"."Task
Id" ,NULL) |
Displays the count of tasks that are on high priority and are open |
| Closed High Priority Tasks Count |
Aggregate |
countif ( "Task"."Priority"='High' AND "Task"."Status"='completed',"Task". "Task Id" ,NULL) |
Displays the count of tasks that are on high priority and are closed |
| High Priority Tasks Closed % |
Aggregate |
"Task"."Closed High Priority Tasks Count" / "Task"."High Priority Tasks Count "*100 |
Displays the percentage of tasks that are on high priority and are now closed |
| Overdue Tasks Count |
Aggregate |
count ( if (" Task"."Status" != 'completed'
AND
"Task"."Due Date" < Curdate
() ,
"Task"."Task
Id" ,NULL)) |
Displays the count of tasks that are overdue |
| Overdue Tasks % |
Aggregate |
"Task"."Overdue Tasks Count" / coun t( "Task"."Task Id" )*100 |
Displays the percentage of tasks that are overdue |
| Time Taken % |
Aggregate |
Sum ( "Task"."Actual Timetaken " )*100/ Sum ( " Task"."Duration" ) |
Displays the percentage of time taken to complete a task |
| Estimation Accuracy % |
Aggregate |
Sum (" Task"."Duration ")- Sum (" Task"."Time Spent So Far ")/ Sum ( "Task". "Duration" )*100 |
Displays the accuracy of the estimation in percentage |
The following are the formulas from the Time Tracking table
| Formula Name |
Formula |
Formula Type |
Description |
| Logged Mins |
Custom |
(" Hours "*60)+" Mins " |
Displays the logged hours in minutes |
Refer to the Adding Formulas in Zoho Analytics help page.
No, you cannot add modify data in Teamwork data tables. Data from Teamwork modules gets automatically synched into Zoho Analytics in the different tables (one table for one module). You cannot edit any of this data or add new data records from within Zoho Analytics.
However, you can add new tables and add/import data into that, to create reports combining it with the data from Teamwork.
No, you cannot add new columns. But, you can add Formula Columns and Aggregate Formulas (i.e., calculated fields) to these tables to help you create powerful reports. Refer Adding Formulas to know more on this.
Yes, you can add new data tables. Click New > New Table to add a new table in the existing Teamwork Workspace.
With this feature, you can import data from other sources or add them manually into your Workspace to analyze and create reports combining this with your Project data. You can also import data from other business applications like Google Analytics etc.
Refer:
To define a lookup relationship between two tables, it is essential that the tables have at least one column which is common between them. Follow the below steps to look up a column from Teamwork along with the data from any other source.
Please do note that you can create Lookup only to columns in the tables that are not from the same data source.
Yes, you can join data from multiple tables to create the reports. Refer to Joining Tables in Zoho Analytics for detailed help on this.
Zoho Analytics allow you to pull the data required by writing standard SQL SELECT Queries. This is called Query Tables. With Query Tables, you can also combine data from different tables and create reports over the same. Refer Here to know about how to create Query Tables in Zoho Analytics.
You can share the default reports provided in the Teamwork connector and the reports you have create, with other users in your portal. Refer to Sharing and Collaboration help page for more details on this.
Once you privately share a report to your colleagues they will be able to access the reports as you do. Refer here to know how to access the reports.
When a Teamwork Administrator configures the Teamwork - Zoho Analytics connector, the tables and reports will be available only to him/her, by default. The Administrator has to share the 'Teamwork Advanced Analytics' database with other members of the organization. Only then will the default reports be accessible by those members.
To know more, refer to Sharing and Collaboration help page.
The Teamwork Administrator who has set up the connector should share the tables present in ' Teamwork Advanced Analytics' database with other members of the organization. Once this is done, the shared users can create reports based on those tables.
To know more, refer to Sharing and Collaboration help page.
Zoho Analytics offers three user roles - Administrator, Workspace Administrator and User. Click to know more about the Zoho Analytics Organization Model and User Roles.
This is the expected behavior. Only when the users being shared is set as a Workspace Administrator, they can edit the reports. If a normal user wants to edit the report, he/she will have to save the report with a new name using the Save As option toolbar. The User can edit this report.
Yes, you can. Refer the topic Apply filter criteria .
Yes, you can export the report/dashboard in various file formats such as CSV, EXCEL, PDF, HTML and Image. Click to know more.
In order to print the report/dashboard, you first need to export it. You can export the report in various file formats such as CSV, EXCEL, PDF, HTML and Image. Click to know more.
If you are the Administrator of the Zoho Analytics connector or a 'Workspace Administrator', you can schedule reports and dashboards to be emailed automatically. Refer to the email schedule section in this help documentation.
You can easily embed the reports & dashboards created in Zoho Analytics in your website, web application or blog. Refer Embedding in Web Pages/Blogs to know more about this.
You can integrate and perform cross-functional analytics with almost all the business applications that Zoho Analytics offers integration with.
To import data from business apps,
A lookup relationship will not be created between the Teamwork modules and the modules of the application that you are trying to import automatically.
To manually create a lookup relationship refer this help link - Click here
We offer 24x5 technical support (Monday to Friday). In case if you need our assistance kindly do mail us your questions to support@zohoanalytics.com .
You can also reach out to us on our toll-free numbers -
United States: +1 (888) 900 9646
United Kingdom: +44 (20) 35647890
Australia: +61-2-80662898
India: +91-44-6965 6060
Yes, certainly. Register for a demo in this page .