+ Reply to Thread
Results 1 to 12 of 12

need an if formula, but not sure where it goes

  1. #1
    Registered User
    Join Date
    06-26-2016
    Location
    Sydney, Australia
    MS-Off Ver
    2013
    Posts
    8

    need an if formula, but not sure where it goes

    Hey Guys,

    First time here and hoping someone could Help me:

    =INDEX($G$4:$G$416,SMALL(IF($E$4:$E$416=(VLOOKUP(TODAY(),SUMMARY,26,FALSE)),ROW($G$4:$G$416)-ROW($G$4)+1),COLUMNS('DATA@'!$DQ$6:DQ6)))

    I am a Youtube and google Excel user (No REAL Knowledge) and i have come up with this formula which really works well for me. However, i want to add 1 more condition and that is where i am stumped.

    I want it to Only Give me back infomation if Row F has "Monday" in it.

    So something like:

    =if($f$4:$f$416= "Monday",INDEX($G$4:$G$416,SMALL(IF($E$4:$E$416=(VLOOKUP(TODAY(),SUMMARY,26,FALSE)),ROW($G$4:$G$416)-ROW($G$4)+1),COLUMNS('DATA@'!$DQ$6:DQ6)))

    But that doesn't work.
    Can someone PLEASE HELP. GOOGLE HAS FAILED ME!

    Thanks,

    Daniel

  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. 2503 (Windows 11 Home 24H2 64-bit)
    Posts
    90,536

    Re: need an if formula, but not sure where it goes

    Welcome!

    Attach a sample workbook. Make sure there is just enough data to demonstrate your need. Include a BEFORE sheet and an AFTER sheet in the workbook if needed to show the process you're trying to complete or automate. Make sure your desired results are shown, mock them up manually if necessary.

    Remember to desensitize the data.

    Click on GO ADVANCED and then scroll down to Manage Attachments to open the upload window.
    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
    Registered User
    Join Date
    06-26-2016
    Location
    Sydney, Australia
    MS-Off Ver
    2013
    Posts
    8

    Re: need an if formula, but not sure where it goes

    think i have attached sample
    Attached Files Attached Files

  4. #4
    Forum Expert
    Join Date
    05-05-2015
    Location
    UK
    MS-Off Ver
    Microsoft Excel for Microsoft 365 MSO (Version 2402 Build 16.0.17328.20068) 64-bit
    Posts
    30,779

    Re: need an if formula, but not sure where it goes

    Try

    =SUMPRODUCT(($C$2:$C$29)*(TEXT($A$2:$A$29,"dddd")=F5)*($B$2:$B$29=$G$5))/SUMPRODUCT(--(TEXT($A$2:$A$29,"dddd")=F5)*($B$2:$B$29=$G$5))

    Change F5/G5 to "day"/"weather" cell e.g. F11/G11 for Tuesday

  5. #5
    Registered User
    Join Date
    06-26-2016
    Location
    Sydney, Australia
    MS-Off Ver
    2013
    Posts
    8

    Re: need an if formula, but not sure where it goes

    Hi John, Does work, thank you very much.

    Would you be able to explain to me how breifly, if you don't mind.

    Thanks Heaps!!!!

    Daniel

  6. #6
    Registered User
    Join Date
    06-26-2016
    Location
    Sydney, Australia
    MS-Off Ver
    2013
    Posts
    8
    Quote Originally Posted by JohnTopley View Post
    Try

    =SUMPRODUCT(($C$2:$C$29)*(TEXT($A$2:$A$29,"dddd")=F5)*($B$2:$B$29=$G$5))/SUMPRODUCT(--(TEXT($A$2:$A$29,"dddd")=F5)*($B$2:$B$29=$G$5))

    Change F5/G5 to "day"/"weather" cell e.g. F11/G11 for Tuesday
    Alright, heres another couple of questions.
    Say Row A has 3 years of dates in it. But i only want to see the most recent 4 results?

    Or i had another column that had temperature in it and i only want to see averages of days that have the weather number and also feel in a range of tempreture? So like all mondays with weather # 3 and tempreture between 15 and 18.? Possible?

    Thanks heaps for your help. Truely appreciate it!

  7. #7
    Forum Expert
    Join Date
    05-05-2015
    Location
    UK
    MS-Off Ver
    Microsoft Excel for Microsoft 365 MSO (Version 2402 Build 16.0.17328.20068) 64-bit
    Posts
    30,779

    Re: need an if formula, but not sure where it goes

    =SUMPRODUCT(($C$2:$C$29)*(TEXT($A$2:$A$29,"dddd")=F5)*($B$2:$B$29=$G$5))/SUMPRODUCT(--(TEXT($A$2:$A$29,"dddd")=F5)*($B$2:$B$29=$G$5))


    First the asterisk "*" is the AND condition ("+" is used as OR condition although not applicable here)

    The highlighted BLUE is:


    ($C$2:$C$29) - your sales figures

    (TEXT($A$2:$A$29,"dddd")=F5) Check the "day" of the dates using TEXT to convert to DDDD e.g. Monday and compare with your selected day in F5 and will return a TRUE or FALSE condition

    ($B$2:$B$29=$G$5) check if the "Weather" values match the value in G5 againing returning a true or FALSE condition

    The * (Multiplication) "converts" any TRUE of FALSE to 1 or 0 respectively so we multiple each element of the ranges e.g C2*A2*B2, C3*A3*B3 .... so if both A2 and B2 are true we will get C2 as a result: if either are 0 we will get 0. This is the PRODUCT part of the formula: we then SUM these results - hence SUMPRODUCT!

    Putting these together in the same SUMPRODUCT: SUM the Sales where Date=Selected day AND Weather=Selected whether so this gives is total sales for this Day/Weather combination.


    The other SUMPRODUCT (in RED) simple gives a COUNT of the combination of selected Days and Weather

    Dividing first SUMPRODUCT (Total Sales) by second SUMPRODUCT( count of Sales) gives us the average.

    Hope this makes sense.

    You will find other explanations on the web and possibly YouTUbe videos.

  8. #8
    Forum Expert
    Join Date
    12-09-2014
    Location
    Trakai, Lithuania
    MS-Off Ver
    2016
    Posts
    1,412

    Re: need an if formula, but not sure where it goes

    See the attached decision to a named range "weekday".
    Attached Files Attached Files

  9. #9
    Forum Expert
    Join Date
    05-05-2015
    Location
    UK
    MS-Off Ver
    Microsoft Excel for Microsoft 365 MSO (Version 2402 Build 16.0.17328.20068) 64-bit
    Posts
    30,779

    Re: need an if formula, but not sure where it goes

    Re your other questions:

    Say Row A has 3 years of dates in it. But i only want to see the most recent 4 results?
    You will need to a add further test to check if the dates are >= the 4th largest (dates in Excel are held as numbers so the latest date in a range will be the largest)

    ($A$2:$A$29>=Large($A$2:$A$29,4)

    =SUMPRODUCT(($C$2:$C$29)*(TEXT($A$2:$A$29,"dddd")=F5)*($B$2:$B$29=$G$5)*($A$2:$A$29>=Large($A$2:$A$29,4))/SUMPRODUCT(--(TEXT($A$2:$A$29,"dddd")=F5)*($B$2:$B$29=$G$5)*($A$2:$A$29>=Large($A$2:$A$29,4))

    This should find the 4 most recent Mondays with Weather=3 (based on your posted file) : untested!

    So like all mondays with weather # 3 and temperature between 15 and 18.?
    e.g

    ($D$2:$D$29>=H1)*($D$2:$D$29<=H2)

    D are your temperatures

    H1 = Lowest temp
    H2 = highest temp

    Add into BOTH SUMPRODUCTS

  10. #10
    Registered User
    Join Date
    06-26-2016
    Location
    Sydney, Australia
    MS-Off Ver
    2013
    Posts
    8

    Re: need an if formula, but not sure where it goes

    John You are a legend!

    Thanks mate,

    Fantastic explanation and great problem Solving. Thanks Heaps!!!

  11. #11
    Registered User
    Join Date
    06-26-2016
    Location
    Sydney, Australia
    MS-Off Ver
    2013
    Posts
    8

    Re: need an if formula, but not sure where it goes

    =SUMPRODUCT(($C$2:$C$29)*(TEXT($A$2:$A$29,"dddd")=F5)*($B$2:$B$29=$G$5)*($A$2:$A$29>=Large($A$2:$A$29,4))/SUMPRODUCT(--(TEXT($A$2:$A$29,"dddd")=F5)*($B$2:$B$29=$G$5)*($A$2:$A$29>=Large($A$2:$A$29,4))

    This one Didn't quiet work. Doesn't seem to be giving me an average or if I drag down to get Top 4 results its coming up with Divo. Results seem to only give me one figure?

    What do you think?

    Seems like the large formula doesn't work, I think because its not dividing by top 4, its only dividing by itself.
    Last edited by DanielHaynes; 06-27-2016 at 12:45 AM. Reason: update

  12. #12
    Registered User
    Join Date
    06-26-2016
    Location
    Sydney, Australia
    MS-Off Ver
    2013
    Posts
    8

    Re: need an if formula, but not sure where it goes

    Yep, Tried doing this multiple ways, however once large divides its self it doesn't like it. Is there another way or am I doing this wrong. Help PLEASE:

+ 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. Replies: 11
    Last Post: 06-06-2014, 03:34 PM
  2. how to hide formula in formula box, view lookup result in formula box?
    By vengatvj in forum Excel Formulas & Functions
    Replies: 2
    Last Post: 10-14-2013, 04:06 PM

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