I'm hoping you can help me, I tried to do this in the database but the data returned was wrong so I'm trying in Excel and my brain can't seem to work this out. Help would be most appreciated.
I'm trying to get the total call count for each Week, each Month and year (see table below) but can't work out the formula.
enter image description here
enter image description here
Related
Hope someone could help me out here. I am currently working in an Excel file where I have a cell with a number in there based on an IF formula it gives a number. Now I want let's say you have the number 5 in that cell, I want the cells underneath it to start counting from 1 to 5 (Or the value that's in the cell) but i cant really find a way to figure it out. So i hope you guys can help me
PS: Sorry for my English it's not my native language
Thank you
I tried to search on google but couldn't really find something about this
I'm trying the calculate the days between two dates on a pivot table in Excel. I have it working correctly for the most part, yet I am having an issue with the formula trying to calculate even if one of the fields is blank. Preferably, I would want the days between to only calculate if there is a date entered in both cells, since if there is only one entered it gives me an incredibly high number.
I figured I could use something like
=IF( OR (NOT (ISBLANK('App Received Date')), NOT(ISBLANK('Quote Date'))),SUM(ABS('App Received Date'- 'Quote Date'),0)
But I cant seem to get it to work correctly. I must be missing something simple but I cant get a handle on it.
Any assistance would be greatly appreciated
I am a teacher at a University. I am trying to make an attendance in excel for one semester.
I have almost finished but I have hit a problem that I can't find the answer to. I am trying to create a student lookup. Please see picture.
So I thought I would use vlookup taking it from the running total from my students list. However that total is a formula not a value number. I got that total by formula: to add each months total together and place the result there. I can't seem to get vlookup to return a formula just a vault number. The problem is as the semester ins't over that total keeps changing every lesson. So I need vlookup to work with that running total. I have looked for many hours on the net as I thought somebody must have a similae problem but I cant either not find or understand them. If you need the excel file for better understanding I would be happy to share it with you. Thanks in advance
The formula being returned is actually a text string that looks like a formula. You need some workaround to evaluate that formula.
Please share the worksheet so I can understand it better.
Meanwhile this link should be useful for you.
https://www.excelforum.com/excel-formulas-and-functions/1104076-can-you-use-vlookup-to-return-a-formula-instead-of-a-value.html
I'm trying the get the average value out of this table that has a lot of data in it.
I tried to VLOOKUP function but i can't get it to search on day names :(
If someone could help me that would be much appreciated!!
enter image description here
This basically the same as answer already given but for text and for all averages to return
=SUMPRODUCT(--(LEFT($B$2:$B$15,FIND(",",$B$2:$B$15)-1)=$H2),D$2:D$15)/SUMPRODUCT(--(LEFT($B$2:$B$15,FIND(",",$B$2:$B$15)-1)=$H2))
Put in I2 and drag right and down.
I spent half the day racking my brain and playing around with the formulas i know of in the excel world but I still cannot figure out a method to do this without using VBA coding. Hopefully someone out here would be able to help provide some guidance without the use of code.
The scenario is this and refers to the screenshot above:
Objective: Determine the number of non zero values in a particular month's column for every row that has an "exceptions" label.
The month is controlled by the user input cell.
Example:
Total number of non zeros in Feb column is 6.
Actual result that I am expecting: 3 (because there are three rows with "exceptions" label and we should count the total of those rows only.)
I've tried Index/Match/Countifs/lookups but just cannot find the right combination.
Closest I came to was using the screenshot below but that only returns the total number of non zeros in that table.
Just putting the question out there for any of the excel gurus to help.
Appreciate the time and thanks in advance!
Regards,
Stan
If you do not want volatile functions like offset or indirect, you can still do it with index (your formula isn't wrong at all). Just try this:
=COUNTIFS(INDEX(F2:K7,,MATCH(G10,F1:K1,0)),">0",E2:E7,"exeptions")