I am trying to create a formula to calculate the total number of calls that I need to receive to hit the target % if the current % is less than the target %. I have tried various formulae, but not having much luck. Also, it shouldn't show me any negative figures.
A = Departments B = Calls Dropped C = Calls Received D = Current % (C/F) E = Target % F = Total (B + C) G = Required (When I enter B, C and E, the rest needs to calculated automatically. G should tell me the amount of calls I need to receive in order to achieve the target specified in E)
Departments Calls DroppedCalls ReceivedCurrent %Target %TotalCalls Required to hit TargetDept 1 21083.33%95.00%12 Dept 2 067100.00%90.00%67 Total 27791.67%95.00%79
I was working on a chart to calculate my Amazon seller rating to see how many more perfect order I need to hit my next target grade. Here is how the calculation works.
Order with no problem gets 100 points per order Minor problem gets 0 point Moderate problem minus 100 points Severe problem minus 500 points
Grade are evaluate by: <84.5 Fair <96.5 Good <98.5 Very good Above is Excellent
Total points / total orders = final grade (or percentage)
As of now i got : 53800 (points) / 624 (orders) = 86.22(%)
Now that I know what grade I've got so far and I also want to know how many more perfect orders I need to achieve my next targets or in case some bad orders come by and how far they pull me down.
Attached is my work sheet so far and I'm just missing the calculation for the orange shaded part.
Cells D 5 to D 36 are representing day 1 to day 31 of the month. clocked working hours of the employees will be entered to these cells. they are supposed to meet the target of 8 hours clocked at the end of each working day. that means on day 1 the target is 8 hours, day 2 it is 16 hours, day 3, it is 24 hours. i want to see the cumulative progress in ( percentage) on any give day. That means on each day the clocked hours should be compared with the actual cumulative target until that day.
I have a number of columns, each containing several thousand points. For each column, I need to know the percentage of points that are within a certain percentage (1%, 3%, and 5%) of a target number.
This code works fine, but it does not look professional. I tried to write like: If Application.Intersect(Target, rng1, rng2, rng4, rng5) Is Nothing Then Exit Sub
it did not work, but as it is down here it worked
Private Sub Worksheet_SelectionChange(ByVal Target As Range) Dim rng1 As Range, rng2 As Range, rng3 As Range, rng4 As Range, rng5 As Range On Error Goto NoValidation Set rng1 = Range("B28:B55") Set rng2 = Range("D28:D55") Set rng4 = Range("H28:H55") Set rng5 = Range("J28:J55") If Application.Intersect(Target, rng1) Is Nothing Then If Application.Intersect(Target, rng2) Is Nothing Then If Application.Intersect(Target, rng4) Is Nothing Then If Application.Intersect(Target, rng5) Is Nothing Then Exit Sub End If End If End If End If End If If Target. Validation.InCellDropdown Then Application.SendKeys "%{Up}" NoValidation: Err.Clear End Sub
Background: I play a game that requires 5 members to play, however you can have more then 5 members on the team. In order for a player to receive points for playing they must have played at least 30% of the total games played. The problem for me is when trying to figure out how many games someone needs to play to get to 30%, the total goes up as they play those games.
What I would like to accomplish: I'm looking for help on a formula that would figure out how many games a player would need to play to get to 30%. I have a column that is total games played, %of games played by player, games played by player, and games needed to play to get to 30%. Basically the user would enter the # of games played by each player, and the total games played overall for the team for that week, the spreadsheet would then show the # of games each player that isn't above 30% would need to play.
I tried to make the question as clear as possible, if anyone needs clarification,
Originally Posted by shg Welcome to Oz, Basca
spreadsheet with a representative sample of your data?
Games Played Player 1 20 Player 2 7 Player 3 13 Player 4 20 Player 5 13 Player 6 13 Player 7 7 Player 8 7
I have a sheet (example is attached) that lists multiple jobs and their related tasks. I want to know if it's possible to create a conditional formatting that says if the percentage complete under the "task" is under 100% and within X number of days of the target date, it's red/yellow/green.
So, if a target date is 70-100 days out; 0%-10% - RED, 11%-45% - YELLOW, 46%-100% - GREEN
If a target date is 40-69 days out; 0%-45% - RED, 46%-75% - YELLOW, 75%-100% - GREEN
If a target date is 20-40 days out; 0%-60% - RED, 61-90% - YELLOW, 91%-100% - GREEN
If a target date is 0-20 days out; 0%-85% - RED, 86%-95% - YELLOW, 96-100% - GREEN
If a target date has passed, Anything under 100% is RED.
I am wanting to have conditional formats so the cell fill in a range on sheet 1 will change to:
- red if the value of a cell on a seperate sheet (date) is greater than 18 months old - yellow if the value of a cell on a seperate sheet is 'In progress' - green if the value of a cell on a seperate sheet (date) is less than 18 months old
I'm trying to determine the percentage rate of change in a trendline. I've got a sales chart with 90 days worth of sales figures. I can see that the trendline is trending down, but I'm not sure exactly how much.
If you take the first data point in a trendline and subtract it from the last data point and then divide that by the first it should give you the percent change. Excel must be able to do that math for you but I can't even figure it out to save my life. I can't even figure out how to display the first and last data point much less the "rate" of change I'm looking for.
1 workbook, 2 worksheets (or tabs). On tab 1, I want a formula/alert that tells the user if any duplicate values exist in Column A of tab 2
Tab 2, Column A, has Unique ID's (6 digit numeric values)
The user manually inputs the ID's on new rows in Column A
Row 1 is reserved and in use for something else Row 2 is my header, so cell A2 says "ID" Row 3-623 currently contain unique ID's
When the user inputs a new ID into cell A624, then they return to Tab 1, I want my formula/alert on Tab 1 to tell the user that they have duplicates in Column A of tab 2. I know the Conditional Formatting, but if the user copies in 100 new values, they won't necessarily see the highlighted cells. My tab 1 is my "checks and balances" and the last place the user is suppposed to look to ensure that they haven't created any duplicate ID's. If the user sees a warning message that says duplicates exist, then I'll tell them that they need to look at column A (for cells that have been conditionally highlighted).
One issue that I'm running into with the conditional highlighting is that I want cells A3:A1048576 to already have the conditional formatting - this way when the user inserts a value into Cell A624, then A625, etc they conditional formatting is already there. Right now with data in cells A3:A623, cells A624:A1048576 are all highlighted with the Red/Bold Red Font (which is okay I guess), but ideally it would be nice to not count 2+ empty cells as duplicates and I'll have to have my formula on Tab 1 not include the blank cells.
I DO NOT want to use the Remove Duplicates feature of Excel 2010. If I remove them I could be removing data in columns B, C, D, etc that belong to the Unique ID. I just need the user to be told in Tab 1 that they DO have duplicates and I'll train the user how to research this and fix it.
The reason I want to look for duplicates in the entire Column A is because the list of Unique ID's will grow over time.
i am needing to issue a dos command in excel? basically i need to send a target link to a file. i cant use a hyper link for several reasons, and this is the only way i know how to go about this.
Objective: * I want to copy a range that starts at 1 cell immediately to the right of AddressStart and extends for 100 cells wide * I want to paste 10 rows of this information * AddressStart will be a variable address such as B2, B10, B1000
Here is my current code (which fails on copy/paste):
Code: For NewRows = 1 To 10 WSReqs.Range(AddressStart).Offset(NewRows, 0).EntireRow.Insert WSReqs.Range(AddressStart, Cells(0, 100)).Offset(0, 1).Copy Destination:=WSReqs.Range(AddressStart, Cells(0, 100)).Offset(NewRows, 0) Next NewRows
Questions: 1) How do I set the relative reference to set the size of width of the row to be pasted? 2) Is it possible to refer to the end of the row (far right)
I have a spreadhseet where columns I and J (range from I6 to J300) serve as input cells, off to the right, 23 columns over in AF and AG respectively I have a hidden array formula (Index, match) calculating values based on input in either column I or J and several factors embedded in reference table in the same sheet. That works fine. I want cells in columns I and J to be interdependent, in other words, input in column I drives calculations in a hidden formula and I want the value of that calculaton to display in column J (in a adjacent cell input in I6 results in display in J6), but if I input value in J then this value will drive calculation in a hidden formula and display in I (let's say I is centimeters and J is inches). I have a code that works (I set it up as a try just for few rows) but only one code section at a time, not together. If I choose column I (#9) to go first in code, values update in J, but not the other way around, if I choose column J (#10) to go first in code, values update in I, but not the other way around. What am I doing wrong, I tried Target.address case, I tried Intersect ... is nothing then etc. They all work one at a time but not together. Here is the code as it stands now
I have emails automatically being sent based on what is entered in the attendance columns, but now I need emails being sent on what is entered in the comments columns. Because the target range changes, I do not know how to combine them.
Private Sub Worksheet_Change(ByVal Target As Range) If Intersect(Target, Range("A11:A50, F11:F50, K11:K50, P11:P50, A55:A94, F55:F94")) Is Nothing Then Exit Sub If LCase(Target) = "no" Then Call RouteActiveWorkbook(Target.Offset(, 1), Target.Offset(, 2), Target.Offset(, 3)) If LCase(Target) = "ex" Then Call RouteActiveWorkbook2(Target.Offset(, 1), Target.Offset(, 2), Target.Offset(, 3)) End Sub
This code results in two macros based on what it entered. Macro 1...........................
In the first sheet "Sheet1", I am trying to SUM the values of column C from another sheet 'XXX'. The trick is that the name of this other sheet is a variable, like Sheets(1+i).name , "i" being an integer. I can't find the proper syntax for the formula below.
What i have in cell D3 is the formula 'Today ()' to show the date formatted like so. January 2012.
In cells B1,B4,B7,B10,B13,B16,B19,B22,B25,B28,B31,B34 are results showing targets for set each month of the year (B1=January, B2=February etc). What i want to do in cell D4 is show the target for the month that we are in, in other words the target for the month showing in cell D3.
I have a spreadsheet at work . I am tracking the quality target for the department and I need to create a formula that adjust accordingly to the target set for month end which is 90%.
I have build in the foreacasted numbers for the whole month but I need the formula to indicate the minimum error points needed to achieve the target of 90% for month end when I replace the forecasted numbers on a daily basis with actual numbers.
I have attached the spreadsheet which will be clearer.
I created two macros to achieve my objective. I used the "record a macro" function, which probably creates very ugly codes. My first code formats raw data in a certain fashion so that it can be easily extracted; I understand this code fairly well and have been able to make alterations to it with ease.
The second macro takes values from the formatted data and plugs them into a table. Unfortunately, the code that Excel wrote is very confusing to me.
Essentially, the data follows a pattern (new entries occur every 14 rows), but Excel's automated code is tedious to program. Here's an example:
Columns("R:R").Select With Selection.Interior .ColorIndex = 11 .Pattern = xlSolid End With Range("T2").Select ActiveCell.FormulaR1C1 = "Acct" Range("U2").Select ActiveCell.FormulaR1C1 = "Org Name" Range("V2").Select ActiveCell.FormulaR1C1 = "Pmt Type"...............
I have a work sheet which includes a column of numbers representing certain daily events. I am building a user defined function to analyse the trend in the numbers by assisigning values from -2, -1, 0, 1, 2 based on comparison of two days.
Below is the function I built but it is not working, it is resulting in zero values in most conditions. I have attached the sheet which includes the numbers and the function.
i am trying to us the SUMIFS formula to work out if a rep is below target on selling brands.
I have two worksheets summary and data, Summary worksheet is where i am trying to do the sumif formula against a sales average taking the information from the data worksheet I have account manager name, brand, sales, DSI I tryed the below sumifs formula but its coming back as 0
Please could someone have a look and point out the error in my ways =COUNTIFS(data!$A$2:$A$11,B17,data!F2:F11,"<B2)") The first count if should count how many times the account manager appears in the brand and the second count is if his DSI on the data worksheet is higher that the target dsi on the summary sheet
I need to hide/unhide a couple of rows based on the result of a formula in the Target Range. Basically, Cell D2 contains the results of a sum (a+ B), if this is greater than 10,000, unhide the next row.
I have a new sale structure to put in place the commission is paid in the following way:
below 1500 zero commission between 1501 and 3000, commission at 16% between 3001 and 8000, commission at 23% above 8001, commission paid at 30% Ergo if you generate 5000 you would be paid 700 ie nothing for the first 1500, 16% of the second 1500 and 23% of the remaining 2000. ( I hope my maths is correct! )
I have tried to manipulate other solutions using sumproduct but my knowledge is poor, the formula I have tried manipulating is =SUMPRODUCT( (A2 > {0,1500,3000,8000}) * (A2 - {0,1500,3000,8000}) * {0,0.16,0.23,0.3}). I prefer single line formula rather than lookups as staff will not be able to see commission rates easily.
I have a fairly complicated working time calculation I need to make, the sheet calculates how much 'actual working time' is spent on a product. 'Actual working time' means just that, breaks & any other non working time removed from the total.
My sheet set up is as follows:
Column Z = Start Date Column AA = Start Time Column AB = Finish Date Column AC = Finish Time Column AD = Actual working Time (hh:mm) Column AE = Planned stop time (hh:mm) Standard working times are:
Monday to Thursday 07:30 to 16:15 Friday 0730 to 1200 First tea break is 10:00 until 10:10 Lunch is 12:30 to 13:00 (except friday) Last tea break is 14:40 to 14:50
1) Jobs can be 'in production' for many days, sometimes weeks 2) Overtime may be run before or after shift, also weekends 3) We can have 'Planned stop time' which will also need subtracting
I'm struggling to come up with a formula that ill give me the following:
I have will have a row of data (cells A4:H4 on the attached example), in the respective cells below each value in row 4 I want formula that will give me a value of 10 if it sees 90% in the cell above reducing to a value of 0 if it sees 80% in the cell above. I think that there should be a relatively straightforward formulae for that, my problem is that I want to add a further criteria that says; if the value in row 4 increases above 90% and reaches 95% then I must return a value that is 10 for 90% but "stretches" to 12 for 95%. Anything below 80% should return a value of 0, and anything over 95% should return a value of 12.