Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

I created a team but I can't find it when I try to create a project

Colleen
Contributor
September 2, 2022

I'm trying to create a new project using the IT Service Management project template, but it's making me select a team to proceed. I created a team but it's not showing up as an option to select. Also I need this team to be private. Any advice?

1 answer

0 votes
Tayyab Bashir
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Champions.
October 19, 2017

Hi,

You could devise a formula of your own to convert that. 
For e.g, the following function:

public void convertor (int milliseconds){
int milli = milliseconds;
long secs = milli / 1000;
long mins = secs / 60;
long hours = mins / 60;
long days = hours / 24;

String time = days + "d " + hours % 24 + "h " + mins % 60 + "m " + secs % 60 + "s";
System.out.println(time);
}

And pass in the milliseconds in the function to get respective days/hours/minutes etc. 

Suggest an answer

Log in or Sign up to answer