Project Resource View - Hours (2024)

Options

    Jerome Cababa ✭✭

    05/19/20 in Smartsheet Basics

    Hi,

    I am managing a project right now, and I want to see to how many hours per resource each time I assigned a tasks. The project that I am managing will run in 1 year so I want to capture and see like how many hours they spent to date.

    In my sheet, I have an 'actual hours' column and 'assigned to' column (This is multiple contacts). I am documenting each time we have a meeting.

    Is there a way that I can see the hours by using the Project Resource View? I try to use the project resource view but I can only see the percentage? Is there a way to see total hours per resource?

    Appreciate your help on this!

    Thanks,

    Jerome

    0 · Share on FacebookShare on Twitter

    • Genevieve P. Employee

      06/17/20 Answer ✓

      Options

      Hi Jerome,

      No problem at all! Thanks for clarifying your ranges.

      Copy/Paste this:

      =SUMIF({NetSuite Project Plan & Asset List with GaRange 2}, HAS(@cell, "Jerome Cababa"), {NetSuite Project Plan & Asset List with GaRange 1})

      In your formula, you have typed the range twice instead of using @cell. See that I replaced the entire Range 2 the second time with the @cell function.

      Let me know if this works!

      Join us at Smartsheet ENGAGE 2024 🎉
      October 8 - 10, Seattle, WA | Register now

      5 · Share on FacebookShare on Twitter

    Answers

    • Ramzi K ✭✭✭✭✭

      05/25/20

      Options

      Hi @Jerome Cababa,

      The resource viewer provides you with a view of % Allocation of resources so you can do resource management, balancing, etc.

      Are you trying to determine how many hours are assigned to each resource so that you can determine if they are over allocated? If so, try using formulas on your 'actual hours' columns like SUMIFS where you can specify multiple criteria like Assigned To and perhaps a status column to only sum up tasks that are not completed.

      Happy to help further if you can provide some examples and maybe screen shots.

      Cheers,

      Ramzi

      Ramzi Khuri - Principal Consultant @ Cedar Tree Consulting (www.cedartreeconsulting.com)

      Feel free to email me: ramzi@cedartreeconsulting.com

      💡 If this post helped you out, please help the Community bymarking it as the accepted answer/helpful.

      0 · Share on FacebookShare on Twitter

    • Jerome Cababa ✭✭

      05/25/20

      Options

      Thanks @Ramzi - I tried to used the SUMIF but I am getting an error message.

      So what I did is I created a new sheet to track all the hours per resource. On my reference sheet, I have the following columns:

      Task Name, Status, Duration (Hours), Actual Hours , Assigned To, etc

      We track all hours even all the meetings that we have. My "Assigned To" column has multiple contacts too.

      I have attached the actual sheet that I am currently managing.

      Project Resource View - Hours (5)

      Here is my criteria:

      My range is - Assigned To

      Criterion - "Jerome Cababa" - I wanted to sum all my hours.

      Sum_Range - Duration (Hours). I am not using the Actual Hours cause that's the actual hours spent for each resource spent in that meeting.

      Formula - =SUMIF({NetSuite Project Plan & Asset List with Ga Range 5}, "Jerome Cababa", {NetSuite Project Plan & Asset List with Ga Range 5})

      I am getting 0 on that formula. I should be getting 3.5

      I tried used sumifs but getting an error.

      Appreciate your help on this.

      Thanks,

      Jerome

      0 · Share on FacebookShare on Twitter

    • Jerome Cababa ✭✭

      06/05/20

      Options

      UP

      0 · Share on FacebookShare on Twitter

    • Genevieve P. Employee

      06/11/20 edited 06/11/20

      Options

      Hi Jerome,

      It looks like the formula is only calculating for when "Jerome Cababa" is the only selection in the drop-down list, versus being one of multiple selections. Try using the HAS function to search for a name:

      =SUMIF({NetSuite Project Plan & Asset List with Ga Range 5}, HAS(@cell, "Jerome Cababa"), {NetSuite Project Plan & Asset List with Ga Range 5})

      HAS is specifically designed for multi-select Drop Down columns (whether that's a List type of column or Contact type). The range in this instance is @cell, or to look in each cell of the previously stated range. Here's an article on HAS for more information.

      Let me know if this works for you!

      Cheers,

      Genevieve

      Join us at Smartsheet ENGAGE 2024 🎉
      October 8 - 10, Seattle, WA | Register now

      0 · Share on FacebookShare on Twitter

    • Jerome Cababa ✭✭

      06/17/20

      Options

      Thanks for the response Genevieve.

      I tried the suggested formula and my total is still getting a Zero.

      =SUMIF({NetSuite Project Plan & Asset List with Ga Range 2}, HAS({NetSuite Project Plan & Asset List with Ga Range 2}, "Jerome Cababa"), {NetSuite Project Plan & Asset List with Ga Range 1})

      I tried to do SUMIFS

      ==SUMIFS({NetSuite Project Plan & Asset List with Ga Range 1}, {NetSuite Project Plan & Asset List with Ga Range 2}, HAS ({NetSuite Project Plan & Asset List with Ga Range 2},"Jerome Cababa"))

      but result is #Unparseable

      0 · Share on FacebookShare on Twitter

    • Genevieve P. Employee

      06/17/20

      Options

      Hi Jerome,

      You will want to state the column reference before the HAS, so the SUMIF knows what column to look at. Then inside of the HAS, use the @cell function - this tells the HAS to look within each cell of the previously stated column.

      SUMIF works like this: Range, Criteria, Sum Range

      So first you need to state your Range to search in (the column with the names).

      Next you state your criteria, that it HAS "this name" in the cell (or @cell)

      Finally, you state the Sum Range (the column with data to sum).

      Which column is the one with the names, is it Range 2? Then is Range 5 the one with the data to sum? If so, try this:

      =SUMIF({NetSuite Project Plan & Asset List with Ga Range 2}, HAS(@cell, "Jerome Cababa"), {NetSuite Project Plan & Asset List with Ga Range 5})

      Or in other words:

      =SUMIF({Column with Names}, HAS(@cell, "Jerome Cababa"), {Column with Hours})

      Does that help?

      Genevieve

      Join us at Smartsheet ENGAGE 2024 🎉
      October 8 - 10, Seattle, WA | Register now

      0 · Share on FacebookShare on Twitter

    • Jerome Cababa ✭✭

      06/17/20

      Options

      Hi, Genevieve.

      Thanks for being patient with me. That's what I actually did.

      Range is The column where I have my name on it which is the "Assigned To" Column. (This is the my Range 2)

      Criterie is Put HAS @(cell, "Jerome Cababa"). (This is the my Range 2)

      Sum Range is the Column with our Duration (Hours). (This is the my Range 1)

      Here is the visual so you can see it.

      Project Resource View - Hours (11)

      Thanks, JEROME

      0 · Share on FacebookShare on Twitter

    • Genevieve P. Employee

      06/17/20 Answer ✓

      Options

      Hi Jerome,

      No problem at all! Thanks for clarifying your ranges.

      Copy/Paste this:

      =SUMIF({NetSuite Project Plan & Asset List with GaRange 2}, HAS(@cell, "Jerome Cababa"), {NetSuite Project Plan & Asset List with GaRange 1})

      In your formula, you have typed the range twice instead of using @cell. See that I replaced the entire Range 2 the second time with the @cell function.

      Let me know if this works!

      Join us at Smartsheet ENGAGE 2024 🎉
      October 8 - 10, Seattle, WA | Register now

      5 · Share on FacebookShare on Twitter

    • Jerome Cababa ✭✭

      06/17/20

      Options

      Awesome! THANK YOU SO MUCH GENEVIEVE!!!

      This works! I thought you are referring @cell to reference the Assigned To Column! I have been working this for 2 weeks now.

      Thanks A LOT!

      Jerome

      0 · Share on FacebookShare on Twitter

    • Genevieve P. Employee

      06/17/20

      Options

      Haha no worries at all!!!!

      I'm so very glad that this worked for you!

      Here's more information on the @cell function if you're interested.

      Join us at Smartsheet ENGAGE 2024 🎉
      October 8 - 10, Seattle, WA | Register now

      0 · Share on FacebookShare on Twitter

    '); $(this).css('min-height', '20px'); const searchBoxRoot = document.getElementById("searchbox"+index); Coveo.initSearchbox( searchBoxRoot, "https://search.smartsheet.com/community/" ); }); $('#titleBar .CoveoSearchbox').hide(); $('.coveoSearchButton').on("click",function(){ $('#titleBar .CoveoSearchbox').toggle(); }); // ====== Front Page Search Box ====== $('#Form_search').remove(); var boxes = ["#search-0", "#search-1", "#search-2", "#search-3", "#search-4", "#search-5"]; console.log("PT: Before search box replacement"); $(boxes).each(function(i, val) { // ====== Front Page Search Box ====== $(val).each(function( index ) { console.log(this); $('#searchbox' + i).remove(); $(this).find('form').remove(); $(this).addClass('fpsearchbox'); $(this).attr('id', 'fpsearchbox' + index); $(this).append('

    '); $(this).css('min-height', '20px'); const searchBoxRoot = document.getElementById("fpsearchbox"+index); var action = "https://search.smartsheet.com/community/"; if ( $('body').hasClass('Categories')) { var category=$('h1.heading-1').text(); if (category === "Smartsheet Product Feedback & Ideas") { category = encodeURIComponent(category); Coveo.$(searchBoxRoot).on('buildingQuery', function(e, args) { args.queryBuilder.advancedExpression.addFieldExpression('@communitycategory', '==', [category]); }); action = action + '#&f:@communitycategory=['+category+']'; } } Coveo.initSearchbox( searchBoxRoot, action ); }); }); });

    Categories

    • All Categories
    • 14 Welcome to the Community
    • 60.1K Get Help
    • 118 Global Discussions
    • 107 Industry Talk
    • 404 Announcements
    • 13 Community Corner Newsletter
    • 73 Brandfolder
    • 125 Just for fun
    • 49 Community Job Board
    • 23 Member Spotlight
    • 1 SmartStories
    • 261 Events
    • 21 Webinars
    • 7.3K Forum Archives
    Help shape the future of Smartsheet.Share your ideas and feature requests.

    Watch video

    Project Resource View - Hours (2024)
    Top Articles
    Flying on the Ground | The Online Automotive Marketplace | Hemmings
    2007 Porsche 911 Carrera for sale - Gladstone, OR - craigslist
    Old Bahama Bay Quad Folding Wagon
    Monster Raider Set
    Gateway Login Georgia Client Id
    Who Owns Po Box 17316 Salt Lake City Utah
    Yasmin Boland Daily Horoscope
    15 Cloud Tattoo Meaning Symbolism- Reflecting Change and Transience
    Umass Medhub
    Mcdonalds 5$
    Aces Charting Ehr
    Nissan 300Zx For Sale Craigslist
    Annika Noelle Feet
    Animal Eye Clinic Huntersville Nc
    Craigslist Columbus Ohio Craigslist
    Joy Ride 2023 Showtimes Near Amc Ward Parkway
    ACCESS Arts Live --- Online Performing Arts for All on LinkedIn: Leeds International Piano Competition 2024 | Second Round | 12 September…
    Fk Jones Obituary
    Mhrb Near Me
    Bowser's Fury Coloring Page
    Regal Stone Pokemon Gaia
    Cozy Bug Company Net Worth
    Hahs Sentral
    Hendricks County Mugshots Busted Newspaper
    Often Fvded Barber Lounge
    Death Valley National Park: The Complete Guide
    Merrick Rv Loans
    G Data IS lastet 16 GB RAM vollständig aus
    Pennys Department Store Near Me
    Panty Note Manga Online
    Affordable Prom Dresses for Women | Fashion Nova
    Kobe Express Bayside Lakes Photos
    Ufc 281 Tapology
    Fedex Passport Locations Near Me
    Wym Urban Dictionary
    William Sokol National Security Advisor Resigns
    On-Campus Student Employment
    Kurlyrose
    Waive Upgrade Fee
    Malibu Horror Story Showtimes Near Regal Atlantic Station
    Sveta Håkansson
    5128 Se Bybee Blvd
    Thotsbay New Site
    Sinmiedoalban12
    Zuercher Portal Inmates Kershaw County
    Effingham Radio News
    Couponsky.com
    Hotels Near William Woollett Jr Aquatics Center
    Magnifeye Alcon
    8 Internet Celebrities who fell prey to Leaked Video Scandals
    Rubrankings Austin
    Unblocked Games Premium 77
    Latest Posts
    Article information

    Author: Dong Thiel

    Last Updated:

    Views: 5703

    Rating: 4.9 / 5 (79 voted)

    Reviews: 94% of readers found this page helpful

    Author information

    Name: Dong Thiel

    Birthday: 2001-07-14

    Address: 2865 Kasha Unions, West Corrinne, AK 05708-1071

    Phone: +3512198379449

    Job: Design Planner

    Hobby: Graffiti, Foreign language learning, Gambling, Metalworking, Rowing, Sculling, Sewing

    Introduction: My name is Dong Thiel, I am a brainy, happy, tasty, lively, splendid, talented, cooperative person who loves writing and wants to share my knowledge and understanding with you.