Forum Discussion

RvdHeijden's avatar
RvdHeijden
Icon for Post Prodigy rankPost Prodigy
9 years ago
Solved

i need help with this one

Goodday,   ill try to explain my question as clear as i possibly can.   i have a table and every row is a task with an 'begindate' and an 'enddate' so i know how long that task may take. Futherm...
  • v-yulgu-msft's avatar
    v-yulgu-msft
    9 years ago

    Hi RvdHeijden,

     


    Im not sure but i think it has something to do with the fact that my initial question was that the duration was given in Workingdays.

    but when i see the data in my table it looks like MS Project uses Hours in the database, where in PWA it displays Days. 

     


     

    In that case, you only need to make a little adjustment to the formula:

    Working hours per day = 
    IF (
    WEEKDAY ( 'Working Table_2'[Date]; 2 ) IN { 6; 7 };
    BLANK ();
    'Working Table_2'[Taakwerk] / ('Working Table_2'[Taakduur]/8)
    )

     

    Regards,
    Yuliana Gu