How to load in daily rate cards
1 | Go to Workspace config → Planner → Budget Config → Enable Planner Budget Target (set to on) | |
2 | Go to Workspace config → Forecast → Budget/financial config → Financial Forecasting (set to on) |
|
3 | Build and run a SQL query (in Redash) to pull the information you need for the import:
| select team_id as internalId,
team_daily_rate as dailyRate,
team_name,
team_type,
team_hierarchy_name_1,
team_hierarchy_name_2,
team_hierarchy_name_3,
team_hierarchy_name_4,
team_hierarchy_name_5
where team_type in ( 'Chapter', 'Capability' )
order by team_hierarchy_name_1,
team_hierarchy_name_2,
team_hierarchy_name_3,
team_hierarchy_name_4,
team_hierarchy_name_5 |
4 | Export a CSV file with the results |
|
5 | In the downloaded CSV file, update the 'dailyRate' column with the desired value. Keep in mind that, depending on the source you use for the upload, this import might overwrite previous values. |
|
6 | If there isn’t a data source created for the import, create one. For some customers, we use the Teams CSV file upload (see icon on the right for reference). | |
7 | Upload the file The only two columns that need to be mapped are ‘InternalID’ and ‘DailyRate’. | |
8 | Check that the import was successful:
|
|
Related information