FAQs How do I...?

Browse by Category

FAQ › Category: How do I...?
How do I delete a report from Global?
Question Link
Answer
To delete a visual report from organizer, go to File menu - Account – Organization Information – Global Settings – Organizer tab, on Reports tab, select the desired Report and press on Delete button. 
What can I set in General Settings tab from Options dialog?
Question Link
Answer

In General Settings tab from Options dialog you can set: LanguageDate FormatCurrencyPlacementDecimal digitsAuto save a copy every “x” minutes, Auto save and close project after x idle minutes and Use global settings when creating a blank project options.

Where can I see which team members have subscriptions assigned to?
Question Link
Answer
To see to which team member each subscription is assigned to, go to our Online Portal, Sign In and go to Team page. Team Members that have have a subscription assigned to have the Editor role. You can also see which team members are editors directly in the application by going to menu Team - Manage Team - click on the Edit icon for the desired team member and check their Role.
How to make a task not be a summary task?
Question Link
Answer

To make a task not be a summary task, first select all the subtasks then go to menu Task and click Outdent.

What does the red diamond icon mean?
Question Link
Answer
The red diamond icon from the Indicators field shows the tasks that are late or/and overbudget. Hover over the red exclamation mark to learn more information.
Does the app support opening PWA projects from project Online?
Question Link
Answer
We do support PWA projects from Project Online. Unfortunately, we do not support a project that has source “Project” or was created in project.microsoft.com.
Can I change field order in the Export Wizard dialog when exporting to Excel?
Question Link
Answer

You can change field order in the Export Wizard dialog when exporting to Excel by clicking on up/down arrows near Move from the Mapping section.  Note: The option to change field order in the Export Wizard dialog when exporting to Excel is available only on Windows and Mac platforms.

Can I export to Excel more than one type of data?
Question Link
Answer

You can export to excel all the available types of data: TasksResources and Assignments, in one file by selecting all of them from the Map Options section in the Export Wizard dialog. You will then be asked to set mapping settings for each type of data. The exported file will have 3 separate worksheets for each type of project information with the selected settings.Note: The option to export to Excel more than one type of data is available only on Windows and Mac platforms.

How can I export Assignments to Excel?
Question Link
Answer

To export Assignments to Excel on Windows and Mac platforms, for the desired project, go to menu File – Export – Export to Excel. Select a location, type in a name and click Save. In the Export Wizard dialog that appears, select the Selected Data option and click Next. In the Map Options section select Assignments then click Next. In the Assignments Mapping section, type in a name for the Worksheet then either click on Add All button to add all the available project fields or manually add some fields by clicking on a row and opening field picker. Click Finish for the file will be exported with the selected settings. Tips: You can move the rows order by selecting a row and clicking on up/down arrows near Move. You can add/remove rows by clicking Insert Row or Delete Row buttons. You can add/remove all the available resource fields by clicking Add All or Clear All buttons.

How can I export to Excel tasks with Filter?
Question Link
Answer

To export to Excel tasks with Filter on Windows and Mac platforms, for the desired project, go to menu File – Export – Export to Excel. In the Export Wizard dialog that appears, select the Selected Data option and click Next. In the Map Options section select Tasks then click Next. In the Task Mapping section, open the Export Filter drop-down menu and select the desired filter. Type in a name for the Worksheet, write or select the desired task fields or base table and click Finish. The file will be exported with the selected filter. Tips: You can move the rows order by selecting a row and clicking on up/down arrows near Move. You can add/remove rows by clicking Insert Row or Delete Row buttons. You can add/remove all the available resource fields by clicking Add All or Clear All buttons.

How can I export to Excel tasks from table including assignments in output?
Question Link
Answer

To export to Excel tasks from table including assignments in output on Windows and Mac platforms, for the desired project, go to menu File – Export – Export to Excel. Select a location, type in a name and click Save. In the Export Wizard dialog that appears, select the Selected Data option and click Next. In the Map Options section select Tasks, from the Microsoft Excel Options select Include assignments rows in output option then click Next. In the alert that appears click Yes. In the Task Mapping section, type in a name for the Worksheet, write or select the desired task fields by clicking on a row and opening field picker and click Finish. In the exported task sheet will be added resource assignments information after each task. Tips: You can move the rows order by selecting a row and clicking on up/down arrows near Move. You can add/remove rows by clicking Insert Row or Delete Row buttons. You can add/remove all the available resource fields by clicking Add All or Clear All buttons.

How can I export to Excel resources from table?
Question Link
Answer

To export to Excel resources from table on Windows and Mac platforms, for the desired project, go to menu File – Export – Export to Excel. Select a location, type in a name and click Save. In the Export Wizard dialog that appears, select the Selected Data option and click Next. In the Map Options section select Resources then click Next. In the Resource Mapping section, type in a name for the Worksheet, click on Based on Table… button, select the desired base table and click OK. The mapping in the grid will be completed with the columns from the selected table. Click Finish for the project to be exported to excel with the selected settings. Tips: You can move the rows order by selecting a row and clicking on up/down arrows near Move. You can add/remove rows by clicking Insert Row or Delete Row buttons. You can add/remove all the available resource fields by clicking Add All or Clear All buttons.

How can I export to Excel tasks from table?
Question Link
Answer

To export to Excel tasks from table on Windows and Mac platforms, for the desired project, go to menu File – Export – Export to Excel. Select a location, type in a name and click Save. In the Export Wizard dialog that appears, select the Selected Data option and click Next. In the Map Options section select Tasks then click Next. In the Task Mapping section, type in a name for the Worksheet, click on Based on Table… button, select the desired base table and click OK. The mapping in the grid will be completed with the columns from the selected table. Click Finish for the project to be exported to excel with the selected settings. Tips: You can move the rows order by selecting a row and clicking on up/down arrows near Move. You can add/remove rows by clicking Insert Row or Delete Row buttons. You can add/remove all the available task fields by clicking Add All or Clear All buttons.

How can I export a project to Excel using a Project Excel Template?
Question Link
Answer

To export to excel using a Project Excel Template on Windows and Mac platforms, for the desired project, go to menu File – Export – Export to Excel. Select a location, type in a name and click Save. In the Export Wizard dialog that appears, select the Project Excel Template option then click Finish. The project will be exported to Excel in .xlsx format based on a template.

How can I export to excel only the summary tasks?
Question Link
Answer

In order to export to Excel only the summary tasks, you need to apply the "Summary Tasks" filter. In order to do that, go to the Project menu - Filter - Summary Tasks. After that, go to the File menu - Export - Export to Excel, type the name of the file and press "Save". Follow the steps from Export Wizard and click Finish.Note: On iOS and Web platforms, when going to menu File – Export – Export to Excel, just select the desired file location and click Save. The project will be saved in .CSV format.

How to export information to Excel/CSV using command?
Question Link
Answer

Example for how to export to Excel a sample project from c:\my files folder with Project Plan 365:

ProjectPlan.exe /csv “c:\my files\sample.mpp”- this command will create sample.csv file in c:\my files folder.

For automation purposes, the following script sample can be used (exportCSV.bat):

@echo off

set PP="C:\Program Files (x86)\Husatonic\ProjectPlan365\ProjectPlan.exe"

cmd /c "%PP% /csv %1"

if %ERRORLEVEL% neq 0 (

echo Export error for %1

) else (

echo Successfully exported %1

)

Usage: exportCSV.bat projectpath

PP variable should be set to actual application path – export result will be displayed on the screen. The exported file will be added to projectpath location.

It is available for Gantt Chart, Tracking Gantt and Task Sheet views. By using this option, the content of the list of tasks will be exported in a CSV format.Note: Using an automatic command can export projects to excel only in .CSV format.

How can I export a project to Excel (CSV) using automatic command?
Question Link
Answer

Exporting a project to Excel via an automatic command is only available on Project Plan 365 for Windows.

General command line syntax:

ApplicationName [/switch] projectpath

/csv – export to Excel file (CSV format) for default view (currently supported views are: Gantt Chart, Task Sheet, Resource Sheet and Team Planner).Note: Using an automatic command can export projects to excel only in .CSV format.

How can I export a project to an excel file?
Question Link
Answer

To export a project to an excel file follow these steps:1. Open desired project file.2. Open desired views (Gantt Chart, Tracking Gantt, Resource Sheet, Task Sheet, Team Planner).3. Go to menu File– Export – Export to Excel.4. Select the desire file location and click Save.5. In the Export Wizard dialog that appears, select the desired option: Project Excel Template or Selected Data.6. Follow the steps from the Export Wizard and click Finish for the file to be exported in a .XLSX format.Note: On iOS and Web platforms, when going to menu File – Export – Export to Excel, just select the desired file location and click Save. The project will be saved in .CSV format.

On what platform is the Fill in Grid functionality available?
Question Link
Answer

The Fill in Grid functionality is available on the Windows and Mac platforms.

Where is the Leveling Options dialog in the app?
Question Link
Answer
We are sorry, but at this moment, the Leveling Options dialog isn't available in our application.
Do you have an early version of Project Viewer 365?
Question Link
Answer
An earlier version of our Project Viewer 365 application can be downloaded at Download Archive.
Can I fill down/up a value from a cell over cells that already have values in them?
Question Link
Answer
You can fill down/up a value from a cell over cells that already have values in them by drag and dropping the drop down rectangular or the Fill Down / Fill Up option from menu Task – Fill. All the selected cells will be filled in with the value from the first cell that was selected.
How can I fill up/down cells from different columns at the same time?
Question Link
Answer
To fill up/down cells from different columns at the same time, first select the desired cells you want to duplicate from the first column then all the upper/down cells you want to fill in, then hold pressed the CTRL key and select the same selection of rows from the next column then go to menu Task – Fill and click Fill Down or Fill Up button.Note: If you select cells from different columns that don’t have the same selection of rows, the fill up/down functionality cannot be applied.
Can I fill up/down cells from different columns at the same time?
Question Link
Answer
You can fill up/down cells from different columns at the same time only if the cell groups are selected from the same selection of rows.Note: If you select cells from different columns that don’t have the same selection of rows, the fill up/down functionality cannot be applied.
Can I duplicate multiple cells?
Question Link
Answer
You can duplicate multiple cells by selecting the desired cells you want to duplicate – hold the drop down rectangle then drag and drop down and the cells will be filled down starting with the upper value, or drag and drop up for the cells to be filled up starting with the last value.Note: To duplicate multiple cells you can also select the cells you want to duplicate as well as all the down/upper cells you want to fill in and go to menu Task – Fill – Fill Down / Fill Up.
Contact
Chat