Jazz Forum Welcome to the Jazz Community Forum Connect and collaborate with IBM Engineering experts and users

Q for Excel wizard - crunching estimates/actuals

We have estimates set to hours so an export of estimates and time spent
come through with an hour suffix:

Item Summary Estimate Time Spent
43333 Eat More Spinach campaign 10 hours 4 hours

What trickery is available to convert Estimate and Time Spent to numeric fields?
I tried forcing a format (#" hours") but that seems to only work for new entries

Is a VBScript macro needed here?

0 votes



One answer

Permanent link
Here is an excel transformation trick that will work, though I still suspect there is a simpler solution.
In particular we're interesting in doing some number crunching on estimates v actuals. '

Note: we are forcing estimates and actuals to hours so we only need to deal with
transforming '10 hours' char to 10 numeric

              =VALUE(TRIM(CLEAN(SUBSTITUTE(F2," hours",""))))

The substitute is obvious (thow out the hours postfix),
'trim(clean...' appears to be needed for Excel to recognize the result as a numeric.

0 votes

Your answer

Register or log in to post your answer.

Dashboards and work items are no longer publicly available, so some links may be invalid. We now provide similar information through other means. Learn more here.

Search context
Follow this question

By Email: 

Once you sign in you will be able to subscribe for any updates here.

By RSS:

Answers
Answers and Comments
Question details

Question asked: May 24 '12, 9:13 a.m.

Question was seen: 3,062 times

Last updated: Aug 08 '12, 2:23 p.m.

Confirmation Cancel Confirm