Consulting

Results 1 to 14 of 14

Thread: Employee Scheduler in Excel

  1. #1
    VBAX Regular
    Joined
    Mar 2008
    Posts
    90
    Location

    Post Employee Scheduler in Excel

    I need an Employee Scheduler in Excel does anybody know where can I get some templates? Thanks!

  2. #2
    Distinguished Lord of VBAX VBAX Grand Master Bob Phillips's Avatar
    Joined
    Apr 2005
    Posts
    25,453
    Location
    Google it!
    ____________________________________________
    Nihil simul inventum est et perfectum

    Abusus non tollit usum

    Last night I dreamed of a small consolation enjoyed only by the blind: Nobody knows the trouble I've not seen!
    James Thurber

  3. #3
    VBAX Regular
    Joined
    Mar 2008
    Posts
    90
    Location
    i'm trying but I was asking if somebody posted in here something about ..an Employee Scheduler in Excel

  4. #4
    VBAX Regular
    Joined
    Mar 2008
    Posts
    90
    Location
    Hello,

    I've attached an excel file ...

    I have the sheet Total where I want to centralize the data from all sheets.

    Each sheet represent a different project.

    In the "total" sheet each project will have a unique code for example totosi="TOTO" ; matrix="MX" ;reed_italia="RIT" and so on...

    In the cell E5 from the "total" sheet I want to put a formula with wich I can veify if the cell E5 from all sheets is populated with an "x" ..if ..true I want to get in E5 total's cell the code of the project if false I want to get " - "


    I'm trying this
    =if(totosi!E5=X;"TOTO";IF(matrix!E5=X;"MX";IF(reed_italia!E5=X;"RIT;IF(reed_franta!E5=X;total!;IF('gratta e vinci'!E5=X;"GV"; _
    IF('1240'!E5=X;"TG";IF('telepas twin'!E5=X;"TLPT";IF('telepas aziende'!E5=X;"TLP";IF(mimesi!E5=X;"MIM";IF(spaniola!E5=X;"SP"; _
    IF(moneygram!E5=X;"MNG";IF('visual box'!E5=X;"VB";IF(fastweb!E5=X;"FWB";"SET";"-")))))))))
    ... but it doesn't work


    thanks!!

  5. #5
    VBAX Expert shrivallabha's Avatar
    Joined
    Jan 2010
    Location
    Mumbai
    Posts
    750
    Location
    Hello,
    I was a little lazy to add all worksheets' Cell E5 to the formula but it should do the trick for you.
    =IF(COUNTA(totosi!E5,matrix!E5,reed_italia!E5,reed_franta!E5)=0,"-",COUNTA(totosi!E5,matrix!E5,reed_italia!E5,reed_franta!E5))
    Regards,
    --------------------------------------------------------------------------------------------------------
    Shrivallabha
    --------------------------------------------------------------------------------------------------------
    Using Excel 2016 in Home / 2010 in Office
    --------------------------------------------------------------------------------------------------------

  6. #6
    VBAX Regular
    Joined
    Mar 2008
    Posts
    90
    Location
    ur formula works but i don't want to count "x" .. in the sheet named "total" i want to get the code for each project ... like ..this
    TR   Training Proiect       MX   Matrix       RIT   Reed Italia       RIF   Reed Franta       VB   Visual Box       TLPT   Telepas twin       TLP   Telepas       GV   Gratta e Vinci _
           SP   Spania       MIM   Mimesi       FWB   Fastweb       TOTO   Totosi       TG   1240

  7. #7
    VBAX Regular
    Joined
    Mar 2008
    Posts
    90
    Location
    if ...  cell totosi!E5=X ... in the cell total!E5 i want to see "TOTO" :)   else  "-"


    thanks!

  8. #8
    VBAX Expert shrivallabha's Avatar
    Joined
    Jan 2010
    Location
    Mumbai
    Posts
    750
    Location
    =CONCATENATE(IF(totosi!E5="x","TOTO","")," ",IF(matrix!E5="x","MX",""))
    Extend the formula as per your need!
    Regards,
    --------------------------------------------------------------------------------------------------------
    Shrivallabha
    --------------------------------------------------------------------------------------------------------
    Using Excel 2016 in Home / 2010 in Office
    --------------------------------------------------------------------------------------------------------

  9. #9
    VBAX Regular
    Joined
    Mar 2008
    Posts
    90
    Location
    HMM ... CAN'T do it .. i'mm getting #name? -- error..

  10. #10
    Distinguished Lord of VBAX VBAX Grand Master Bob Phillips's Avatar
    Joined
    Apr 2005
    Posts
    25,453
    Location
    =IF(totosi!E5="X";"TOTO";"")&IF(matrix!E5="X";"MX";"")&IF(reed_italia!E5="X";"RIT";"") _
    &IF(reed_franta!E5="X";"total";"")&IF('gratta e vinci'!E5="X";"GV";"") _
    &IF('1240'!E5="X";"TG";"")&IF('telepas twin'!E5="X";"TLPT";"") _
    &IF('telepas aziende'!E5="X";"TLP";"")&IF(mimesi!E5="X";"MIM";"") _
    &IF(spaniola!E5="X";"SP";"")&IF(moneygram!E5="X";"MNG";"") _
    &IF('visual box'!E5="X";"VB";"")&IF(fastweb!E5="X";"FWB";"")
    ____________________________________________
    Nihil simul inventum est et perfectum

    Abusus non tollit usum

    Last night I dreamed of a small consolation enjoyed only by the blind: Nobody knows the trouble I've not seen!
    James Thurber

  11. #11
    Moderator VBAX Master austenr's Avatar
    Joined
    Sep 2004
    Location
    Maine
    Posts
    2,033
    Location
    Bob, does the 7 If statement limit not apply in this case because of the &?
    Peace of mind is found in some of the strangest places.

  12. #12
    Distinguished Lord of VBAX VBAX Grand Master Bob Phillips's Avatar
    Joined
    Apr 2005
    Posts
    25,453
    Location
    That's right Austen, it doesn't. The reason is that it is NOT 7 IF statements that is a problem, it is 7 NESTED functions (any function). In this technique, nothing is nested.
    Last edited by Bob Phillips; 11-19-2010 at 09:43 AM.
    ____________________________________________
    Nihil simul inventum est et perfectum

    Abusus non tollit usum

    Last night I dreamed of a small consolation enjoyed only by the blind: Nobody knows the trouble I've not seen!
    James Thurber

  13. #13
    VBAX Regular
    Joined
    Mar 2008
    Posts
    90
    Location
    thanks!! xld ..I won't mark this threand as solved ..cause I might Have another questions!

    thanks again!

  14. #14
    Moderator VBAX Wizard Aussiebear's Avatar
    Joined
    Dec 2005
    Location
    Queensland
    Posts
    5,060
    Location
    You might not but I shall. If you have other questions please raise them in another thread.
    Remember To Do the Following....
    Use [Code].... [/Code] tags when posting code to the thread.
    Mark your thread as Solved if satisfied by using the Thread Tools options.
    If posting the same issue to another forum please show the link

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •