+ Reply to Thread
Results 1 to 11 of 11

auto tick mark with nested if formula

  1. #1
    Forum Contributor
    Join Date
    06-25-2016
    Location
    india
    MS-Off Ver
    MS Office 365(Win 10) Home Ed 2016
    Posts
    135

    auto tick mark with nested if formula

    Hello Everybody,

    I have two sheets, one DailyCard where I update the daily details received from the blocks, second sheet, Tracking is for check whether received or not. I wish Tracking sheet should automaticaly update the stuatus whether details received or not. if Total in DaliyCard = < 0 then details received else not giving signs in Tracking sheet ( as shown)

    thankx
    Attached Files Attached Files
    Last edited by jimmiboy; 01-26-2021 at 02:10 AM. Reason: correct title

  2. #2
    Forum Moderator AliGW's Avatar
    Join Date
    08-10-2013
    Location
    Retired in Ipswich, Suffolk, but grew up in Sawley, Derbyshire (both in England)
    MS-Off Ver
    MS 365 Subscription Insider Beta Channel v. 2505 (Windows 11 Home 24H2 64-bit)
    Posts
    91,301

    Re: Nested IF

    Administrative Note:

    We would very much like to help you with your query, however the thread title does not really convey what your request is about. Tell us what you are trying to do, not how you think it should be done.

    Please take a moment to amend your thread title. Make sure that the title properly explains your request. Your title should be explicit and not be generic (this includes function names used without an indication of what you are trying to achieve).

    Please see Forum Rule #1 about proper thread titles and adjust accordingly. To edit the thread title, open the original post to edit and then click on Go Advanced (bottom right) to access the area where you can edit your title.

    (Note: this change is not optional. No help to be offered until this moderation request has been fulfilled.)
    Ali


    Enthusiastic self-taught user of MS Excel who's always learning!
    Don't forget to say "thank you" in your thread to anyone who has offered you help. It's a universal courtesy.
    You can reward them by clicking on * Add Reputation below their user name on the left, if you wish.

    NB:
    as a Moderator, I never accept friendship requests.
    Forum Rules (updated August 2023): please read them here.

  3. #3
    Forum Contributor
    Join Date
    06-25-2016
    Location
    india
    MS-Off Ver
    MS Office 365(Win 10) Home Ed 2016
    Posts
    135

    If formula in excel

    Ali,

    pl guide what shd be the correct title for help in Nested If forumla

  4. #4
    Forum Moderator AliGW's Avatar
    Join Date
    08-10-2013
    Location
    Retired in Ipswich, Suffolk, but grew up in Sawley, Derbyshire (both in England)
    MS-Off Ver
    MS 365 Subscription Insider Beta Channel v. 2505 (Windows 11 Home 24H2 64-bit)
    Posts
    91,301

    Re: Nested IF

    A statement telling us what you want to achieve with the nested IF - maybe one from your opening post?

    I am not going to do this for you.

  5. #5
    Forum Moderator AliGW's Avatar
    Join Date
    08-10-2013
    Location
    Retired in Ipswich, Suffolk, but grew up in Sawley, Derbyshire (both in England)
    MS-Off Ver
    MS 365 Subscription Insider Beta Channel v. 2505 (Windows 11 Home 24H2 64-bit)
    Posts
    91,301

    Re: auto tick mark with nested if formula

    What does this have to do with tick marks? There is nothing in your opening post or sample workbook about tick marks. Come on, Jimmiboy - you've been a member long enough now to see what good thread titles look like!

    Use something like this: "Tracking sheet to automaticaly update the stuatus whether details received or not".

    In future, think more carefully about your titles: you have been warned three times about this already.

    Here's one way:

    =SUMPRODUCT(G6:I6,$G$5:$I$5)
    Last edited by AliGW; 01-26-2021 at 03:54 AM.

  6. #6
    Forum Contributor
    Join Date
    06-25-2016
    Location
    india
    MS-Off Ver
    MS Office 365(Win 10) Home Ed 2016
    Posts
    135

    Re: Nested IF

    i think u didnt understand the the query properly, my query is simple if "toal colomn" of DailCard sheet is empty then tracking sheet date clomn will be "X" else "✔" see the attachment it will help to understand

  7. #7
    Forum Guru Bo_Ry's Avatar
    Join Date
    09-10-2018
    Location
    Thailand
    MS-Off Ver
    MS 365
    Posts
    7,222

    Re: auto tick mark with nested if formula

    Please try
    =IF(SUMIFS(DailCard!$J$6:$J$17,DailCard!$F$6:$F$17,$H9,DailCard!$E$6:$E$17,I$8),"✔","✘")

    or with color
    =SUMIFS(DailCard!$J$6:$J$17,DailCard!$F$6:$F$17,$H9,DailCard!$E$6:$E$17,I$8)

    and custom format
    [Red]✔;;[Green]✘
    Attached Files Attached Files

  8. #8
    Forum Moderator AliGW's Avatar
    Join Date
    08-10-2013
    Location
    Retired in Ipswich, Suffolk, but grew up in Sawley, Derbyshire (both in England)
    MS-Off Ver
    MS 365 Subscription Insider Beta Channel v. 2505 (Windows 11 Home 24H2 64-bit)
    Posts
    91,301

    Re: auto tick mark with nested if formula

    In I9 copied across and down:

    =IF(LOOKUP(2,1/((DailCard!$E$6:$E$17=Tracking!I$8)*(DailCard!$F$6:$F$17=Tracking!$H9)),DailCard!$J$6:$J$17)<>"","ü","û")

    Set the font to Wingdings, and then use conditional formatting to turn the cell contents either green or red.

    Please mind your manners: remember to say 'thank you' when people offer help. It's all for free - you are not paying us!
    Attached Files Attached Files

  9. #9
    Forum Expert
    Join Date
    10-10-2016
    Location
    Sheffield
    MS-Off Ver
    365 and rarely 2016
    Posts
    3,212

    Re: auto tick mark with nested if formula

    =IF(SUMIFS(DailCard!$J$6:$J$17,DailCard!$E$6:$E$17,Tracking!I$8,DailCard!$F$6:$F$17,Tracking!$H9),"✔","✘")


    then conditionally format the values text colout to green and red for your outcomes. The tick and cross can be used as the values on your spreadsheet, as pasting here changes them!

  10. #10
    Forum Contributor
    Join Date
    06-25-2016
    Location
    india
    MS-Off Ver
    MS Office 365(Win 10) Home Ed 2016
    Posts
    135

    Re: auto tick mark with nested if formula

    yes its working let me try with full data

    thkx

  11. #11
    Forum Moderator AliGW's Avatar
    Join Date
    08-10-2013
    Location
    Retired in Ipswich, Suffolk, but grew up in Sawley, Derbyshire (both in England)
    MS-Off Ver
    MS 365 Subscription Insider Beta Channel v. 2505 (Windows 11 Home 24H2 64-bit)
    Posts
    91,301

    Re: auto tick mark with nested if formula

    Whom are you addressing and which of us are being ignored?

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. [SOLVED] Compiling and accessing nested collection within a nested dictionary
    By jrevball in forum Excel Programming / VBA / Macros
    Replies: 4
    Last Post: 03-06-2020, 10:20 AM
  2. Trying to Convert Excel nested IF to Access nested IIF
    By bbeards in forum Access Tables & Databases
    Replies: 5
    Last Post: 10-10-2018, 10:33 PM
  3. [SOLVED] Nested vlookup or nested IFAND function?
    By jeptik in forum Excel Formulas & Functions
    Replies: 5
    Last Post: 03-11-2017, 02:27 AM
  4. Easier Way To Decipher Nested Nested IF's
    By Vladamir in forum Excel Formulas & Functions
    Replies: 1
    Last Post: 08-06-2015, 03:37 PM
  5. [SOLVED] Nested Sumif's or how to sum data based on nested criteria
    By dlietz in forum Excel Formulas & Functions
    Replies: 7
    Last Post: 10-07-2014, 11:36 AM
  6. How to reduces Nested IF code(144 Nested IF) to achive same functionality
    By jobseeker in forum Excel Programming / VBA / Macros
    Replies: 3
    Last Post: 02-09-2014, 09:45 AM
  7. help on a nested countif/nested if formula
    By vickiemc in forum Excel General
    Replies: 2
    Last Post: 08-13-2008, 08:29 AM

Bookmarks

Posting Permissions

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

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1