Formula With Multiple Conditions

js10053

New Member
Joined
Jul 19, 2013
Messages
21
Office Version
  1. 365
  2. 2013
Hey,

I have a new excel question... every time I think I am making progress, something comes along that I just can't quite figure out. So, I'm working on a new file, I need the file to pull a number based on a date and a time. I have done both of these formulas, but I have never tried to combine them. So, basically, I am trying to get a number to automatically generate based on the date, but the number varies depending on the time of the day. So far, what I have done is create a drop down list for the times that I need, I decided that would work better than having it use the current time for various reasons based on the information I need. I have made the formula work that will allow me to pull the data I need based on the time, but I can't figure out how to get it to do it based on the date.

I'm working with two separate tabs, the main tab has the drop down list with the time. The second tab has the information I am pulling from, its a chart that has each day of the week, with a breakdown of every hour of the day, i.e.


......Sunday..........Monday..........Tuesday
12 ...XYZ. ..............ABC ...............123
1 ......ABC .............DEF ................123
2 .....GHI ..............123 ................QRS

So, I just need to be able to select 12, for example, from my drop down menu and then have the excel file automatically put the coordinating data, for example if it were Monday, ABC, in the cell.

I think I pretty much have everything else in the file working, I have some conditional formatting going, I have the date that I can use if needed, etc. this is just what I'm stuck on. I currently have it where I can pull all the data for Sunday, it's just getting the file to know what day it is and pull based on that.

I hope this all makes sense, please let me know if I need to clarify anything.

Thank you!
 

Excel Facts

Excel Wisdom
Using a mouse in Excel is the work equivalent of wearing a lanyard when you first get to college
Re: Help With A Formula With Multiple Conditions

js10053, Good morning.

I have a ready model that might give you some ideas for your case.
It's in Portuguese.
Unfortunately I have no time available at this time to adapt it to English.

https://www.sendspace.com/file/pv219p

Any questions just ask.

Hope this helps.
 
Upvote 0
Re: Help With A Formula With Multiple Conditions

Example lookup table:


Book1
ABCDEFGH
1SundayMondayTuesdayWednesdayThursdayFridaySaturday
20$B$2$C$2$D$2$E$2$F$2$G$2$H$2
31$B$3$C$3$D$3$E$3$F$3$G$3$H$3
42$B$4$C$4$D$4$E$4$F$4$G$4$H$4
53$B$5$C$5$D$5$E$5$F$5$G$5$H$5
64$B$6$C$6$D$6$E$6$F$6$G$6$H$6
75$B$7$C$7$D$7$E$7$F$7$G$7$H$7
86$B$8$C$8$D$8$E$8$F$8$G$8$H$8
97$B$9$C$9$D$9$E$9$F$9$G$9$H$9
108$B$10$C$10$D$10$E$10$F$10$G$10$H$10
119$B$11$C$11$D$11$E$11$F$11$G$11$H$11
1210$B$12$C$12$D$12$E$12$F$12$G$12$H$12
1311$B$13$C$13$D$13$E$13$F$13$G$13$H$13
1412$B$14$C$14$D$14$E$14$F$14$G$14$H$14
1513$B$15$C$15$D$15$E$15$F$15$G$15$H$15
1614$B$16$C$16$D$16$E$16$F$16$G$16$H$16
1715$B$17$C$17$D$17$E$17$F$17$G$17$H$17
1816$B$18$C$18$D$18$E$18$F$18$G$18$H$18
1917$B$19$C$19$D$19$E$19$F$19$G$19$H$19
2018$B$20$C$20$D$20$E$20$F$20$G$20$H$20
2119$B$21$C$21$D$21$E$21$F$21$G$21$H$21
2220$B$22$C$22$D$22$E$22$F$22$G$22$H$22
2321$B$23$C$23$D$23$E$23$F$23$G$23$H$23
2422$B$24$C$24$D$24$E$24$F$24$G$24$H$24
2523$B$25$C$25$D$25$E$25$F$25$G$25$H$25
26
Sheet2


Then the lookup is like this:


Book1
AB
1Today:Thursday
2Hour:13
3Result:$F$15
Sheet1
Cell Formulas
RangeFormula
B3=INDEX(Sheet2!$B$2:$H$25,MATCH($B$2,Sheet2!$A$2:$A$25,0),MATCH($B$1,Sheet2!$B$1:$H$1,0))


WBD
 
Upvote 0
Re: Help With A Formula With Multiple Conditions

Thank you both for your replies, I really appreciate it. Unfortunately I wasn't able to get the sendspace file to work for me, so I tried with the Index option and was able to get it to work. However, I'm not sure if this can be done or not, but I thought I would check. Is there any way this option to work when the date is pulled using the =TODAY() formula and for the hour using the drop down list that I created? I have it working if I put the day of the week and time in myself, but anytime I use a number that is automatically pulled it results in an N/A. It won't be the end of the world if it isn't possible, but I figured it would be worth asking to try and make the excel sheet as easy to use as possible.

Thank you again for your help!
 
Upvote 0
Re: Help With A Formula With Multiple Conditions

I didn't show it but my formula in B1 was:

=TEXT(TODAY(),"dddd")

WBD
 
Upvote 0
Re: Help With A Formula With Multiple Conditions

Thank you again, it seems like that is going to work. I don't have my full version of excel at the moment, I'm just using the extension in chrome so it is acting up. But it appears that it will work.

Is there any way to do this with the time, but not doing =NOW() and using the drop down list, or will I just need to enter the time I need?

Thanks again
 
Upvote 0
Re: Help With A Formula With Multiple Conditions

You could trigger setting the time through a macro by setting

Code:
Range("B2").Value = DatePart("h", Now)

Or you could use a formula in B2:

Code:
=HOUR(NOW())

WBD
 
Upvote 0
So I finally go back to my file so I could try everything. The date formula is working, but the hour formula is not. However, whenever I try to get the information to auto generate the index formula comes back with a N/A? I’m not sure if the formula cannot read the results or what the issue is. If I just type the date and time it’s fine. It wouldn’t be the end of the world to do that, but I was just trying to make this as user friendly as possible since I won’t be the only one using it.
 
Upvote 0
I was able to work on the formula more and I was able to get the date to work, but I’m still having issues with the time formula pulling just the hour and when I do pull the time I get an error in the index formula. I know I’m probably doing something wrong. But I’m not sure what.
 
Upvote 0
What formula are you using for the day of week and the hour? What does your lookup sheet look like? What is your INDEX formula. It's very hard to diagnose a problem without any information ...

WBD
 
Upvote 0

Forum statistics

Threads
1,215,480
Messages
6,125,047
Members
449,206
Latest member
Healthydogs

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top