Check list with due dates & cell highlighting

Hi,
I've searched for such a thing for an hour now but I couldn't find it:
I have a check list that I want to combine with variables and cell highlighting.
E.g.
Task 1          Due today [fixed, not updating]
Task 2          Due 1 week later
Task 3          Due 2 weeks later
Task 4          2 weeks before date XX/XX/XXXX
Task 5          1 week before date XX/XX/XXXX
When the due dates are reached, I'd like the cell to turn red; when I check the task as done, I'd like the red to disappear again.
Thanks a lot for a hint!
PS: I have also searched another hour for a todo / project management app for Mac OS or iOS that could handle variables and let me copy task lists / projects. I haven't found one. If anyone has heard of one, please let me know!

Hi Peter,
Here is a first attempt. too many nested IFs for my taste but I haven't seen a way around them yet.
A1=TODAY()
A2, A3, etc. your todos.
In column C you need to enter today's date. SGIII has an automator service that will insert today's date. It shouldn't be hard to find. This is the only way I know to do a time/date stamp that is persistent.
D2=IF(B2,"complete",IF(E2,C2,IF(F2,C2+7,IF(G2,C2+14,IF(LEN(H2)>0,H2+14,IF(LEN(I2 )>0,I2+7,"choose a due date"))))))
Highlighting rule for D2 is Numbers> less than $A$1 red fill.
Hope this works for you.
quinn

Similar Messages

  • Billing report with due date field

    Dear Friends,
    Can you please tell the logic of Billing report with due date field.
    Input.  billing document no, date range, sales organisation
    Output : billing document no, sales organisation, Amount. Due date.
    If any clarification required, Please let me know.
    Thanks in advance
    Ranjan

    Is it VF05 is suffiant for your purpose?
    use further selection criteria tab.
    Amit.

  • Google Calendar tasks (with due dates) not showing on cal

    Google tasks with due dates show up in google calendar.  I have google calendar synced to my ical and iphone cal no problem.  But those tasks with due dates do not show up on the ical / iphone cal....
    Does anyone have this working successfully?

    You can download BB Bridge on your handheld, then bridge between HH and PB.
    After installation, please do a hard reset for your HH.
    refer to this KB, it can help you to set it up.
    KB27823
    I will try my best to help you with the issue you get.

  • Tasks with due dates not showing in Calendar

    Hi there,
    This is my first time here. Anyway, any suggestions how I can make my tasks with due dates to show in my Playbook calendar, the same way they are in my 9810's calendar? I intend to use my Playbook at work as well.
    Tan Wei

    You can download BB Bridge on your handheld, then bridge between HH and PB.
    After installation, please do a hard reset for your HH.
    refer to this KB, it can help you to set it up.
    KB27823
    I will try my best to help you with the issue you get.

  • Order Recommndation process with due dates

    Hi,
    I am having little difficulties with MRP and recommendation I donu2019t  know if there is way I can turn off the lead time on MRP process. The situation is that when I have a blanket purchase order which is due in future and when a new recommendation comes which due date is prior to my open purchase order system gives me a recommendation to buy yet I have a open purchase order which will cover the recomm.  I do not need to create another po I need to get a message to expedite the po  Or if I can setup the MRP wizard to look at everything regardless of the due dates and lead time and if I am short then give me a recommendation to buy.
    Thank You

    Dear Mr Shawn,
    On the step 2 of 4 of the wizard there is the possibility to choose the max cumulative lead time. Did you try to leave it blank or select zero?
    If you want to avoid the cumulative lead time for an item only, then it is better to modify the information in the planning tab of the item master data.
    Unfortunately, it is not possible to avoid looking at the due date, but you can use the properties to select the items you prefer.
    In order to have a pop up that asks to fast track the purchase order some customization is required, however I would suggest to check if the use of the properties can help.
    Regards,
    Marcella Rivi
    SAP Business One Forums Team

  • Check box with Boolean data type is not behaving properly

    Hi,
    I create a sample application with one entity driven view object with two attributes. One is of String data type [Value will be Y/N] and another (transient) attribute with Boolean data type. I planned to bind this boolean data type attribute to UI. I overridded the view row impl class and included setting of boolean attribute inside the setter of String attribute. Also in the getter of boolean attribute, added code to check the string attribute and return true/false based on that. Everything is working fine in application module tester. But when i test the same in view controller project in a page, it is not working. Always Check box component is not checked eventhough when i explicitly check it.
    [NOTE: I have given the control hint of Boolean attribute as check_box. Also i don't want selected/unselected entries in the page def file. That's why followed this approach]
    Have i missed out anything? Why this behaviour.
    Thanks in advance.
    Raguraman

    what is the value that is going in when u check it.. did u debug it.. is the viewRowimps setter and getter getting called.. and is it having the right value set and got.. and ur sure that ur using selectBooleanCheckBox..
    ur binding the checkbox to the transient value right??

  • PR list with release date report..?

    Hi all
    Where we aill get the report of PR list with PR released date .
    Thanks
    sapmm

    hi,
    You can get the list of PR's from ME5A or from table EBAN etc...
    BUt its not possible to get the exact release date...
    It a biggest drawback..
    Regards
    Priyanka.P

  • Material list with mrp datas

    hi,
    My requirement is material list with MRP parameters (i.e Maximum level,Reorder points) I have checked by using T-Code MM60 but the required parameter is absent. Waiting for your help.
    Thanks
    Muthuraman.D
    Edited by: muthuraman d on Sep 15, 2010 4:03 PM

    Use tx SE16/SE16N and table MARC.
    Regards,
    Nick

  • List with user data from User Profile Service

    Hi there!
    I got SP intranet site up and running with more then 2000+ users on it.
    User Profile Services is getting users attributes from Active Directory.
    How can i make a list with all of those users and columns like Department, Manager, Office number, etc.. 
    After that i'm going to apply a filter by current user department.
    I would really appreciate some offer.
    Thanks!

    There is a sharepoint hidden list called User Information List , if you want to filter by current user department I recommend that you use ser search API and search People using SourceID 
    public static ResultTable SearchUsers(string query,int limit,string [] selectproperties)
    KeywordQuery kq = new KeywordQuery(SPContext.Current.Site);
    //select properties
    foreach (string property in selectproperties)
    kq.SelectProperties.Add(property);
    kq.SourceId = new Guid("B09A7990-05EA-4AF9-81EF-EDFAB16C4E31");
    kq.QueryText = query;
    kq.RowLimit = limit;
    ResultTableCollection results = new SearchExecutor().ExecuteQuery(kq);
    return results.Filter("TableType", KnownTableTypes.RelevantResults).FirstOrDefault<ResultTable>();
    you need to pass the query Department:CurrentUserDepartment and to get current user department 
    UserProfileManager manager = new UserProfileManager(SPServiceContext.GetContext(SPContext.Current.Site));
    UserProfile currentUser = manager.GetUserProfile(SPContext.Current.Web.CurrentUser.LoginName);
    string department=currentUser["Department"].toString();
    Hope that helps|Amr Fouad|MCTS,MCPD sharePoint 2010

  • Shipment header - Container ID field to list with the data from PM master

    Hi Gurus,
    In Shipment function (VT01N), Vehicle number is added manually in the field Container ID (VTTK-SIGNI) of Overview screen under processing tab.  The requirement is vehicle number should be picked up from the list of possible entries with PM Vehicle master data. (IE01)
    The discussion has been done with PM consultant and understood that it cannot be done by SPRO settings. Also the other technical possibilities have been checked for doing the same and proposed for ABAP enhancements.
    Is it technically possible with
    1) Search help Exit
    2) Screen Exit
    3) User Exit/other enhancements like BADI/BAPI
    Please help me in this regards.
    Regards,
    Anbu

    Check out GUIXT at www.synactive.com.  The base version is already free with SAPgui.  GUIxt allows you to do this without any ABAP coding (..almost any ABAP coding because their "local help" is handled by a supplied ABAP program.

  • How to auto populate a column/SharePoint list with Current Date?

    I have a SharePoint list and I created a column called ‘CurrDate’. 
    I need this column to;
     Display the current      date,
    Auto populate all rows with the current date in the      SharePoint list
    Dynamically update with the current date
    I first tried creating the column using the default SharePoint interface Date Time but it’s not doing any of the steps listed above:
    I even tried entering =[Today] in the Calculated Value field. 
    Still nothing…
    So, I’m sure you will toss out a code snippet to make this work, which is great. 
    However, I’m a total noob with SPD, where the heck do I insert this snippet?
    Always in need of help.

    Hi ,
    I understand that you want to add a column  to a list to hold current date. Here is a workaround:
    Add a single line of text column to the list. Name the list as Today.
    Add a calculated column to the list. Use the [Today] as the formula. Set the calculated column to be Date and Time type.
    Delete the Today column from the list.
    Thanks,
    Entan Ming
    TechNet Subscriber Support in forum
    If you have any feedback on our support, please [email protected]
    Entan Ming
    TechNet Community Support

  • ALV list with empty data - What could have gone wrong?

    Dear experts,
    I'm currently working on some codes to display data (the tables involved really do contain data), but when the codes are executed, the ALV list does not contain any data in it (only the column headers are fine).
    What could have gone wrong? I've been staring at the codes for hours now. Please help. Appreciate any help at all. 
    Displaying ALV data with REUSE_ALV_LIST_DISPLAY:
    form display_alv_data .
      CALL FUNCTION 'REUSE_ALV_LIST_DISPLAY'
        EXPORTING
    *     I_INTERFACE_CHECK              = ' '
    *     I_BYPASSING_BUFFER             =
    *     I_BUFFER_ACTIVE                = ' '
          I_CALLBACK_PROGRAM             = w_prog
    *     I_CALLBACK_PF_STATUS_SET       = ' '
    *     I_CALLBACK_USER_COMMAND        = ' '
    *     I_STRUCTURE_NAME               =
    *     IS_LAYOUT                      =
          IT_FIELDCAT                    = gt_field_cat[]
    *     IT_EXCLUDING                   =
    *     IT_SPECIAL_GROUPS              =
    *     IT_SORT                        =
    *     IT_FILTER                      =
    *     IS_SEL_HIDE                    =
    *     I_DEFAULT                      = 'X'
    *     I_SAVE                         = ' '
    *     IS_VARIANT                     =
    *     IT_EVENTS                      =
    *     IT_EVENT_EXIT                  =
    *     IS_PRINT                       =
    *     IS_REPREP_ID                   =
    *     I_SCREEN_START_COLUMN          = 0
    *     I_SCREEN_START_LINE            = 0
    *     I_SCREEN_END_COLUMN            = 0
    *     I_SCREEN_END_LINE              = 0
    *     IR_SALV_LIST_ADAPTER           =
    *     IT_EXCEPT_QINFO                =
    *     I_SUPPRESS_EMPTY_DATA          = ABAP_FALSE
    *   IMPORTING
    *     E_EXIT_CAUSED_BY_CALLER        =
    *     ES_EXIT_CAUSED_BY_USER         =
        TABLES
          T_OUTTAB                       = gt_final
        EXCEPTIONS
          PROGRAM_ERROR                  = 1
          OTHERS                         = 2.
      IF SY-SUBRC <> 0.
        MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
                WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    endform.                    " display_alv_data
    Retrieving data from the database tables into the internal table:
    form retrieve_data .
      " For internal table 1
      SELECT ekbe~ebeln
             mseg~mblnr
             ekbe~belnr
             ekbe~ebelp
             ekbe~matnr
             ekbe~menge
             ekbe~dmbtr
             ekbe~werks
             mseg~lgort
             mseg~lifnr
             lfa1~name1
      FROM ekbe INNER JOIN mseg ON ekbe~ebeln = mseg~ebeln
                INNER JOIN lfa1 ON mseg~lifnr = lfa1~lifnr
      INTO CORRESPONDING FIELDS OF TABLE gt_1
      WHERE mseg~bwart = '101' AND      " Movement type: Goods Receipt
            ekbe~vgabe = '2' AND        " Transaction / event type for Invoice Verification Number
            ekbe~matnr IN s_m_num AND
            mseg~lifnr IN s_v_num.
      " For internal table 2
      SELECT ekbe~ebeln
             makt~maktx
             eket~eindt                 
      FROM ekbe INNER JOIN makt ON ekbe~matnr = makt~matnr
                INNER JOIN eket ON ekbe~ebeln = eket~ebeln
      INTO CORRESPONDING FIELDS OF TABLE gt_2
      WHERE eket~eindt IN s_d_date.
      " For internal table 3
      SELECT ekbe~ebeln
             ekko~bedat
             ekko~ekorg
             ekko~ekgrp
             ekko~bukrs
      FROM ekbe INNER JOIN ekko ON ekbe~ebeln = ekko~ebeln
      INTO CORRESPONDING FIELDS OF TABLE gt_3
      WHERE ekko~bedat IN s_p_date AND
            ekko~ekorg IN s_p_org AND
            ekko~ekgrp IN s_p_grp.
      " For the final internal table
      SORT: gt_1, gt_2, gt_3.
      LOOP AT gt_1.
        MOVE-CORRESPONDING gt_1 TO gt_final.
        READ TABLE gt_2 WITH KEY gfs_ebeln = gt_1-gfs_ebeln BINARY SEARCH.
        MOVE-CORRESPONDING gt_2 TO gt_final.
        READ TABLE gt_3 WITH KEY gfs_ebeln = gt_1-gfs_ebeln BINARY SEARCH.
        MOVE-CORRESPONDING gt_3 TO gt_final.
        APPEND gt_final.
      ENDLOOP.
    endform.                    " retrieve_data

    Dear forumers,
    I apologize for the rather late reply. The SAP server that I've been working on was down since Thursday evening and I wasn't able to debug much into the codes. Nevertheless, I really do appreciate all of your inputs and help here.
    Rob,
    I've just debugged my codes again and found out that in the first place, there is no data contained in the internal table gt_1 at all. My rough guess is because I've misused the INNER JOIN wrongly here (see code comments below):-
      SELECT ekbe~ebeln
             mseg~mblnr
             ekbe~belnr
             ekbe~ebelp
             ekbe~matnr
             ekbe~menge
             ekbe~dmbtr
             ekbe~werks
             mseg~lgort
             mseg~lifnr
             lfa1~name1  " this line should probably be commented out
      FROM ekbe INNER JOIN mseg ON mseg~ebeln = ekbe~ebeln
                        INNER JOIN lfa1 ON lfa1~lifnr = mseg~lifnr   " this line should probably be commented out - the table join here is not based on table ekbe at all
      INTO CORRESPONDING FIELDS OF TABLE gt_1
      WHERE mseg~bwart = '101' AND     
            ekbe~vgabe = '2' AND 
            ekbe~matnr IN s_m_num AND
            mseg~lifnr IN s_v_num.
    Next, I commented out certain lines further and found that there is still no data contained in the internal table gt_1 again, as follows:-
      SELECT ekbe~ebeln
             mseg~mblnr
             ekbe~belnr
             ekbe~ebelp
             ekbe~matnr
             ekbe~menge
             ekbe~dmbtr
             ekbe~werks
             mseg~lgort
             mseg~lifnr
             " lfa1~name1
      FROM ekbe INNER JOIN mseg ON mseg~ebeln = ekbe~ebeln
                        " INNER JOIN lfa1 ON lfa1~lifnr = mseg~lifnr
      INTO CORRESPONDING FIELDS OF TABLE gt_1.
      " WHERE mseg~bwart = '101' AND     
            " ekbe~vgabe = '2' AND 
            " ekbe~matnr IN s_m_num AND
            " mseg~lifnr IN s_v_num.
    There should be data contained in table ekbe here. What could have really gone wrong now?

  • Container ID field to list with the data from master in shipment header

    Hi,
    While do the Shipment VT01N, Vehicle number (ZZ05XX1588) is added manually in the field of Container ID in Shipment.
    The requirement is vehicle number should be picked up from the list of possible entries with Vehicle master data. (IE01)
    If is it possible, Please give to me details of the configuration steps and user Exit/other enhancements like BADI/BAPI.
    Please help me in this regards.
    Devendra

    Hi Devendra,
    You may get this functionality in DSD module. In standard LE-TRA its difficult to bring it from IE01.

  • Refreshing CRM's Account and Contact list with new data

    Hi Folks, I am very new to CRM and was tasked with a new job of refreshing our CRM's account and contact listing.
    We get a new list in Excel every now or so from a commercial vendor that compiles list of companies and key contacts and sends it out to subscribers.
    I cleaned out this Excel data so there is a:
    1) Contact List
    2) Account List
    3) Contact + Account
    that can be directly mapped to fields in CRM.
    What I need to do is, make sure none of our existing data is deleted. If there is a matching account (eg. company A) then only the phone no, address, website will be updated. If there is a matching contact again do the same.
    If there is no matching account in CRM, then create new account and all corresponding contacts.
    Anyone done something similar, can you please suggest the optimal way to go around this? Thank.

    Hi
    When you do an import in On demand , you can select the appropriate choice in the Step 1 of your import wizard.
    you can select to import the account with the on demand predefined fields where in you can import via account and location.
    In case when duplicate is found you can opt for a overwrite of existing records and when no duplicate is found then you can ask for a new record creation.
    the same way you can do for contacts.
    By this method you can be sure that records are not lost and new records are created if there is no existing record.\
    hope this helps.
    -MR

  • How to create a category/sucategory list with spry data

    I am trying to create a a menu list that looks like this using spry:
    Category Name
    subcategory1
    subcategory2
    subcategory3
    my mysql query is:
    SELECT myp_category_cat.idmnu_cat, myp_category_cat.category_cat, myp_subcat_sct.subcat_sct, myp_subcat_sct.id_sct FROM (myp_category_cat LEFT JOIN myp_subcat_sct ON myp_subcat_sct.idcat_sct=myp_category_cat.id_cat) WHERE myp_category_cat.idmnu_cat=1
    i have ben trying to use xpath filtering but i am getting an error. My datasets look like this:
    var dsCategories = new Spry.Data.XMLDataSet("myincludes/categories.php", "export/row/category", {sortOnLoad: "category", sortOrderOnLoad: "ascending", distinctOnLoad: true});
    var dsList = new Spry.Data.XMLDataSet("myincludes/categories.php", "export/row/subcat");
    now i try to combine like this but getting error:
    <div spry:region="dsCategories" class="SpotlightAndStacked">
      <div spry:repeat="dsCategories dsList" class="SpotlightAndStackedRow">
        <div class="SpotlightContainer">
          <div class="SpotlightColumn"> {category} {subcat} </div>
        </div>
        <br style="clear:both; line-height: 0px" />
      </div>
    </div>
    i am now getting a failed to retrieve dataset. Both dataset work perfectly when not combined.

    You have to declare all your SPRY Datasets in the region:
    div spry:region="dsCategories dsList" class="SpotlightAndStacked">
    Kevin

Maybe you are looking for