Hi,
I am using the background task data source to create my dashboard, and I have a problem with creating job status pending. I have add the new calculation to job status,
IF [Progress] == -1 THEN
"Pending"
ELSEIF [Progress] < 100 THEN
"In Process"
ELSEIF [Finish Code] == 0 THEN
"Success"
ELSE
"Error"
I receive the pending task but on my dashboard it doesn't show any pending even though I have some pending on the server.
Do I do something wrong?
Hi, I am using the background task data source to create my dashboard, and I have a problem with creating job status pending. I have add the new calculation to job status, IF [Progress] == -1 THEN
"Pending"
ELSEIF [Progress] < 100 THEN
"In Process"
ELSEIF [Finish Code] == 0 THEN
"Success"
ELSE
"Error"
I receive the pending task but on my dashboard it doesn't show any pending even though I have some pending on the server. Do I do something wrong?
Thank you so much