I have been looking at different forums and I hope someone could help me here.
I want to conditionally format a cell based on certain criteria
The below would be a master table from which I will need to select data
and compute the values in this table
So, in the formula, I want to see how Phil's time is allocated across three Sprints. So, I will need to look at Sprint column in table 1 and search for Sprint 1, find Phil assigned to Sprint 1 and add the "estimate" total in table 2.
I saw something like this on the forum, but, no luck. I also tried using lookups and index and all I see are errors. If you have an easy way of solving for this, I would really appreciate.
You can use SUMIFS
The formula in B2 is:
=SUMIFS($I:$I,$J:$J,$A2,$G:$G,B$1)
This looks like a pretty basic sumifs.
=SUMIFS(Table1[estimate], Table1[sprint], H$2, Table1[assignee], $G3)
Don't drag the formula to fill the other cells. Copy and paste into the larger area. Dragging will shift the column references like relative cell addressing. Copying and pasting will treat the structured table references as absolute.
Related
I have been trying to populate the following table:
with order_amount from the following table:
I cannot crack the fact there is a second condition to be taken into account - column delivery_week.
Can somebody please help me out with a formula so it can be used across the weeks in table Final?
I have tried with Index+Match. The issue is, one condition is to be looked up horizontally (product_id) and second (Deliver_week) vertically
The end result is shown here:
I would appreciate any tips..
PS: The table structure has to stay as it is - shown tables are just necessary columns to solve the problem.
as stated in the comments use SUMIFS. Put this in C2:
=SUMIFS(OtherSheet!$C:$C,OtherSheet!$A:$A,$A2,OtherSheet!$B:$B,C$1)
And copy over and down.
In the order_amount table, try to create in D:D an assisting column which concatenates both columns A and B, i.e. (A2&B2).
Go into columns C2 in your target table and write something according the following:
(assuming order_amount is in worksheet - "sheet2")
=INDEX(Sheet2!$C:$C,MATCH($A2&C$1,Sheet2!$D:$D,0),0)
Pull this formula to the other rows and columns to populate them, the formula is fixed, thus don't worry for changes. To replace N/A with "0" use:
=IFERROR(INDEX(Sheet2!$C:$C,MATCH($A2&C$1,Sheet2!$D:$D,0),0),0)
I have a very simple spreadsheet with about 700-800 different lines of information, many of which are duplicates. However, I am trying to have excel count and tally the amount of times business is listed. I have seen some people use some formatting by typing the name it needs to count, but with almost 800 different names that would not make much sense. Is there a simpler way to do this?
I know Google Sheets sometimes has a chart if makes on their "Explore" tab. Something like that would be ideal to replicate.
Thank you!
As I mentioned in the comments you can get something like this:
By dragging your column heading into row and values like this:
Say we have:
First copy column A to column B and use the RemoveDuplicates feature in the Data ribbon tab.
Then in C2 enter:
=COUNTIF(A:A,B2)
and copy down:
I'm working on a personal budget spreadsheet, and I have a tab that calculates what I've spent so far in certain categories and compares that total to what I have budgeted for. I have one column showing how much I've spent and the one next to it shows how much I have left to spend. What I want to do is highlight both the total and the amount left if the column showing the difference is negative. I want to do this for the whole 2 columns. Here is a link to my sheet:
https://docs.google.com/spreadsheets/d/1AXaxVpVpblxwnS7VBhz4yhz1SNXRGCB6Zrb3OIKiaKk/edit?usp=sharing
I think my main challenge is highlighting both cells dependent on only one of them. I've tried some custom formulas but they don't seem to work. I know there has to be a way to do this. Any ideas?
You just need to fix the custom formula with a $ and apply it to G6:H26 so that when it is applied to column G it still checks column H:-
=$H6<0
Hope that helps
Is there a way to automatically add rows and columns based on a ref cell.
Example in a cell if the number is 8 I need to create a table 8*8
basically I am trying to find the solution to this question. Below is the table to add the values of two 6 sided dice. But now if I want to find 8 face dice is there a way to automatically do it in excel, without adding the col,row 7&8 then doing the calculation
table for the adding two 6 faced dice
Apologize if I am not clear but I can not find the answer for this. I am thinking about creating a Macro but is there a way to do it without that.
Thank you,
Assuming you started the table in A1, in B2 the formula should be =B$1+$A2. You can then copy the formula to as big as you need.
I hope everyone is having a great day. I have an excel file where the employees ID number is in column A. Then I have 4 other columns that tell me if an employee filled out data for Degree, Work Experience, Experience Level and Languages known. The employee may appear more than once therefore creating several lines for the same employee.
I need to know of a formula that will detect how many of the lines the employee has filled in. The trick here is for example if an employee has already filled in the four columns in any one of the rows to just appear as complete.
I tied using an IF formula but its not working for me.
There is no need for VBA. As I suggested in my comments above, add a helper column (Let's say in B) and put the formula mentioned below in cell B2 and pull it down.
=IF(COUNTA(C2:F2)=4,"Complete","")
Output
Try the UsedRange property.
E.g.,
ActiveSheet.UsedRange.Columns.Count