excel-formula

Match values from two tables in excel

女生的网名这么多〃 提交于 2019-12-25 18:29:06
问题 One table has policy numbers and the agent who wrote each policy. An agent's name multiple times. Another table has just the policy numbers and I want to add the agents' names next to the numbers. VLOOKUP doesn't work because the firs table shows the agents' names multiple times. Any ideas how to do this? 回答1: If the numbers are unique and only the Agents are duplicates, you can use Index/Match or Vlookup. With Index / Match: =IFERROR(INDEX(Policy!$B$2:$B$15,MATCH(A2,Policy!$A$2:$A$15,0)),"")

How to extract address in excel?

本小妞迷上赌 提交于 2019-12-25 18:27:24
问题 I have addresses in one cell and I want to extract them in different cells on the same row. Some cells have four lines of address and some have three. I am able to easily split using text to column and various delimiters for the ones with three but not the ones with four. enter image description here In the first example I have four lines and second has three Anchorage Oncology Centre 3801 University Lake Drive Suite 300-B2 Anchorage, AK 99508 US I would like the above as split into 5 cells.

Excel SUMIFS of cells based upon multiple criteria

♀尐吖头ヾ 提交于 2019-12-25 18:25:29
问题 I'm trying to create a formula which calculates the sum an array of fields based upon multiple criteria. This relates to various franchises and the promotions which they run during the year My document contains two sheets with the following information within in it - 'Daily Revenues'!A:A - date. There is one entry per franchise per day with the revenue for that specific day. 'Daily Revenues'!B:B - the franchise name 'Daily Revenues'!D:D - number. The daily revenue for that day. 'Promotions'!I

Extract data from Excel cell [closed]

心不动则不痛 提交于 2019-12-25 18:23:46
问题 Closed . This question needs to be more focused. It is not currently accepting answers. Want to improve this question? Update the question so it focuses on one problem only by editing this post. Closed 3 years ago . I have data in excel sheet in Column A in format below and want to extract it to different columns Column A XXXXX (YYYYY (ABCDEF) 0000000000 0000000000) XXXXX (YYYYY 0000000000) Result Required A | B | C | D XXXXX | YYYYY | 0000000000,0000000000 | ABCDEF XXXXX | YYYYY | 0000000000

FInd nearest value within list condition

守給你的承諾、 提交于 2019-12-25 18:19:12
问题 I want to find nearest value of a cell but don't know how. In my excel sheet cell B1 has a value(LIST NAME) and cell B2 has other value which is to be searched with condition. If cell B1 has value GP_42(list name) then search the value of cell B2 withing list GP_42 (D4:D13) If cell B1 has value GP_42(list name) then se[![enter image description here][2]][2]arch the value of cell B2 withing list GP_42 (E4:E13). If value doesn't match then result should be the nearest matched value. Result

Excel 2013 - “too many arguments” message to IFAND formula

≡放荡痞女 提交于 2019-12-25 17:22:55
问题 I am creating a decision tool where yes/no responses will trigger a follow up question or decision. I created a formula with 13 arguments where each IF has two AND conditions (if no - it is true, if yes - It is false). I am no expert and tried to follow the guidance from several tutorials and help sites. This is my formula: =IF((AND(J7="Planned - Shift / Vacation Coverage", M7="No")), "Is an E out?", "Schedule LE", IF((AND(J7="Planned - Off-shift PMs", M7="No")), "Can the scheduled resources

Excel IF formula for birth date range

北慕城南 提交于 2019-12-25 16:46:40
问题 I was hoping someone could help me out with and If/Then formula: I need a formula that will tell me if a birth date that is entered in Cell B3 is between the age 12-24 months of age in the years 8/01/2009 to 12/31/2012. For Example, someone who was born 11/01/2008 was between 12-24 months in the years 2009-2012 therefore the value should return a YES in Cell D4. If the child was under 12 months or over 24 months the Cell value will be no. Also in Cell D4 a value should return a Yes if in Cell

Mapping value if it matches criteria - Excel

守給你的承諾、 提交于 2019-12-25 16:44:09
问题 I have a column( Shopping Cart ) that I am looking to populate. The data that I am looking to populate this cell with has criteria( Grocery List ) that, if met, should equal another criteria via a mapping tool. The information is Maybe an example will better explain, Shopping Cart - Sheet1 Fruit Price Apples 0 Bananas 0 Oranges 0 Grocery List - Sheet2 which changes daily *Grocery List* *Price* Eggs 3.00 Granny Smith .50 Bread 1.00 Mandarin .65 Bacon 2.50 Clementine .60 Red Delicious .70 Here

How to concatenate cells in a row until the first blank cell

牧云@^-^@ 提交于 2019-12-25 16:42:45
问题 I'm currently diving into code/VBA coding for the first time. I have a file that I dump into a worksheet that currently I'm manually organizing and pushing out. When put into the worksheet, it delimits itself across the cells. The first 2-4 cells are always parts of a name. This dump file will have varying row and column lengths every time I get it in a given day and dump into a work sheet. For example, one day it may be twenty rows and one day it may be thirty. This is a rough illustration

Conditional Formatting based on previous cell value

冷暖自知 提交于 2019-12-25 16:40:06
问题 I'm looking to apply Conditional Formatting to a range of data I have in Excel that will display red if the most recent day of data is below what it was before, and green if it was higher. Eg Day,Value, Highlight cell colour Day 1 1000 Day 2 2000 Green - as it's higher than day 1 Day 3 500 Red - as it's lower than day 2 Day 4 6000 Green Day 5 4000 Red I want to replicate this for all my data and then ideally be able to count the number of 'runs there are' eg number of red cells together so