Skip to main content
Filter by
Sorted by
Tagged with
1 vote
4 answers
129 views

I have a named range called A2Bounds25: Grade Percentage A* 80 A 71 B 60 C 49 D 38 E 27 I pull the percentage from A2Bounds25: =VLOOKUP(F74, (INDIRECT($K$3)),2) where F74 contains the grade I want to ...
user2463758's user avatar
0 votes
1 answer
75 views

I normally try to figure these our or my problems don't have that much complexity, but trying to create a list for testing. The list will have 4 unique values that are considered the attribute and ...
Jon T's user avatar
  • 155
2 votes
2 answers
156 views

I need help with a repetitive task that I use vlookup for huge dataset, a bunch of tables of >1 million rows from multiple columns, multiple sheets of another workbook. ID TA ISRC Result ID1 TA1 ...
Hoang Nguyen Dinh's user avatar
0 votes
3 answers
95 views

I am trying to match a single value in a cell with content of a comma-separated list in a cell in multiple rows and get all matches returned in a comma-separated list. The source data sheet format ...
Adi's user avatar
  • 95
0 votes
1 answer
109 views

I have a column of data that is populated by a Vlookup. =IFNA(VLOOKUP(A9,'STRUCTURAL E3D DATA'!G$3:J$2000,3,FALSE),"") I need to sub-total this column, but without it just counting all the ...
MickBarrett34's user avatar
1 vote
4 answers
246 views

MY DATA I have the following sheet of data, data: PERSON TEAM Lookup COUNT FOO A Y 3 BAR A N 1 BAZ A N 4 FOO B N 1 BAR B N 2 BAZ B Y 5 FOO C N 3 BAR C Y 1 BAZ C N 2 MY INTENDED FINAL RESULT I want to ...
bismo's user avatar
  • 1,645
0 votes
1 answer
68 views

I am trying to call a function in Excel in one file using a vlookup from another file. The code works correctly if I am using it from the sheet that has the lookup table. However, when I run it from ...
moisheweiss's user avatar
0 votes
2 answers
116 views

I have a vlookup imbedded in VBA that is giving me difficulties. Here is a sample table: Body Group Other Stuff Sun Star Other Stuff Jupiter Planet Other Stuff Io Moon Other Stuff 85 Io Asteroid Other ...
moisheweiss's user avatar
0 votes
1 answer
81 views

Sheet1 Error during initialize: What should be fixed in the code below to get the exact team name populated in the Me.cmbTeam.Value (combobox) if team member is matching in column 2. Private Sub ...
Shiela's user avatar
  • 785
-1 votes
1 answer
108 views

How can I use VLOOKUP to display data from Sheet A to Sheet B based on one specific value in Sheet A cell D5. The specific value will be also located in Sheet B Cell A1. I have tried using something ...
Chris's user avatar
  • 29
0 votes
3 answers
85 views

I have two Google Sheets with following data. I want to get average of two values from lookup table if I have duplicate ranking in my target sheet. How do I achieve this using VLOOKUP function? ...
Indian Guy's user avatar
0 votes
1 answer
29 views

I'm trying to display the difference in quantity between each title based on each quarter. Here's the sample table: enter image description here I'm able to display each title by quarter, but I'm not ...
rshoot's user avatar
  • 11
0 votes
0 answers
120 views

Dim monitorRange As Range Set monitorRange = Intersect(ws.Range("A:A,D:D,G:G,J:J,M:M,P:P,S:S"), ws.Range("16:30,42:56,68:82,95:109,122:135,147:161")) cell.Offset(0, 1)....
user30210194's user avatar
1 vote
1 answer
66 views

I have this data (table 1) : Column A 1999 5000 6666 And there's table 2 : Col.C | Col.D (range)| Col.E (margin) 1000 | 1000 - 1260 | 830 1261 | 1261 - 1261 | 0 1262 | 1262 - 1513 | 830 ...
ezekiels's user avatar
1 vote
2 answers
93 views

Trying to work on a VLOOKUP formula for a calculator that I am working on that returns the highest value from column B where columns A = True. Unfortunately what I am getting with my current attempts ...
user1393064's user avatar
1 vote
3 answers
112 views

I have here Sheet1 that contains dynamic items from Columns A to D. I have Column D with Teachers names but also blanks in it. I also have Sheet2 that contains Teachers names. I would like to display ...
Shiela's user avatar
  • 785
0 votes
2 answers
78 views

https://docs.google.com/spreadsheets/d/1jb9dKFAEL2IWP5C1z5S3cEKol27vYqcsISh1l16KlLQ/edit?usp=sharing I have created the above Google sheet where I am doing a Vlookup in col. A to return Vlookup value ...
user30056942's user avatar
2 votes
1 answer
114 views

I'm having issues with getting the result using my code from different sheet. Here is my project: Date Agent Status 02/01/2025 Rey Valid 01/01/2025 Rey Invalid 03/02/2025 Paul Valid 04/03/2025 Rey ...
Reynaldo Gravador's user avatar
1 vote
0 answers
36 views

I have a series of IDs in a Tableau column that I need to derive the actual names from another data source (like a vlookup or join via the ID), and display the actual names on a new Tableau field. See ...
TSBOlson's user avatar
1 vote
1 answer
58 views

I am annually tracking the names of car models, which may or may not change each year (its random). Suppose I start with three models in 2023 that all changes name in 2024 and 2025, thus producing the ...
Andreas's user avatar
  • 153
0 votes
0 answers
46 views

In cell A5, I am trying to reference the 1st 3 numbers of a cell A1 to vlookup a value in a table in columns C:D. When I run the code separately, it works great. Once the vlookup and the left ...
Shady Hannoush's user avatar
0 votes
2 answers
83 views

I am working with family history data and need to ascertain the Sex from the Given Name. I built a lookup table of given names and usual Sex but it occasionally fails due to a missing or unrecognized ...
Jompra's user avatar
  • 3
1 vote
1 answer
60 views

enter image description here Could someone help me turn the following equation in Column I into one where it does not use Vlookup but rather Index/Match functions and gives me desired result please. I ...
TG33's user avatar
  • 11
0 votes
0 answers
67 views

I want to add a calculated column in my data table, but I can not find the function lookup function in expression function. Layer ID OVLTR MT Result Cell A NULL MT_1 Cell B Cell A MT_2 Cell C Cell A ...
tckm's user avatar
  • 1
0 votes
1 answer
86 views

I have a VBA Sub that is supposed to lookup values from a Named Range and if it finds a match, hide a certain number of rows. But it's not working. In fact, it's producing results that I don't ...
Wayne C.'s user avatar
0 votes
1 answer
89 views

Good day, I have a spreadsheet with a manually populated table (B:D). Then, I'm attempting to create an extract from that table based on the values from column B according to the value from cell I2. ...
Neelfinity's user avatar
-4 votes
1 answer
206 views

I’m trying to set up conditional formatting that uses vlookup to check a date against a tag, and if that date is less than a specific date, highlights it green. See attached data as example. In the ...
MEGAN ORMEROD's user avatar
0 votes
1 answer
78 views

Coming back to the best source I know to ask for help with something I'm trying to do for our little school. I have one sheet where I enter the date and the name of the student under what they're ...
Sarah Savoy's user avatar
3 votes
3 answers
140 views

I'm experiencing an issue with Excel's VLOOKUP function returning "N/A" despite cells looking identical. Below is an example of my sheet The formula in cell B1 is: =VLOOKUP(A1, A4, 1, FALSE) ...
knez's user avatar
  • 53
0 votes
2 answers
95 views

How to VLOOKUP the equivalent value if it matches or fits inside a range. Is there a way to get this using vlookup? Normal VLOOKUP and INDEX/MATCH formulas are not working. The Excel file I currently ...
Marvin Navarra's user avatar
0 votes
0 answers
43 views

I have a spreadsheet with multiple entries encompassing a variety of parameters. My query seems to be working a bit, but is creating a lot of duplicate entries that are not in the original data set. ...
Krista Park's user avatar
0 votes
1 answer
51 views

In Power Query, how can I lookup and fill the values "?" which I highlighted in yellow. I need to fill the columns F G H, based on A&B (or Textjoin column). In short, I need to fill the ...
Muniz Reza's user avatar
0 votes
1 answer
60 views

I have a dataset that looks roughly like this: I'm trying to make a simplified table that pulls from that dataset: Looking at just Column D in my simplified table — the goal is to return the "...
gills's user avatar
  • 219
0 votes
3 answers
206 views

Hi, I have a dataset that includes all weekdays, displayed in blue, and another dataset containing holidays from 2024 to 2026, shown in green. I would like to identify which dates in the weekdays ...
HTTN's user avatar
  • 13
-1 votes
2 answers
116 views

I can't believe I can't figure this out but I keep getting errors. Example sheets are found at: https://docs.google.com/spreadsheets/d/1q4qRgXSq6xXhddArPCoBIuOOupRvokUd0andADCNN0Q/edit?usp=sharing '...
user1132149's user avatar
0 votes
1 answer
78 views

I have a bunch of text strings separated by commas in a cell (e.g., in COLUMN A here). Column A Column B AA,AB,AC ?? AC,AZ,BB ?? AB,BB,CD ?? Each one of these texts is associated with values in a ...
Anonymous's user avatar
0 votes
2 answers
77 views

I have a workbook for a school where on one page I have a list of several hundred names, emails, grades, and other info that is generated automatically by Canvas when a student takes an exam. I also ...
user1956454's user avatar
-1 votes
1 answer
88 views

I’m working with a Google Sheets document where I need to look up values based on multiple criteria and perform a partial match search in one of the columns. I’ve been trying to use an ARRAYFORMULA ...
Poshin's user avatar
  • 23
0 votes
1 answer
49 views

I have two Google Sheets. One is a list of dates in sequence in Column A (9/1/24; 9/2/24; etc..) and in Column B are number values associated with some of the dates. Sheet 1: 9/1/2024 9/2/2024 ...
Joe Smith's user avatar
0 votes
1 answer
1k views

I can't seem to get VLOOKUP to work on google spreadsheet. To my understanding, it should search for c, then return the value on the column to the right since index=2. I will note that when I plug in ...
Guy's user avatar
  • 14.9k
0 votes
1 answer
44 views

I am trying to return top selling companies for different conditions (size) and top selling companies' price in the table F:J. I need to do this for multiple reports with thousans of rows of data, so ...
Çağlar's user avatar
0 votes
1 answer
106 views

I have a table with different values associated with different name. Column A Column B height 1 2 width 1 5 height 2 8 width 2 9 In another sheet, I have a table with multiple values separated by ...
Anonymous's user avatar
0 votes
2 answers
54 views

I have multiple dataframes that I want to apply the same merge to. data_1 = [[1, "Sarah"], [2, "Kevin"], [3, "Mark"]] data_2 = [[1, "Bart"], [5, "Nina"...
be84's user avatar
  • 51
0 votes
0 answers
36 views

vlookup in Excel =VLOOKUP(A3,[Q_Joining_Demograph_Network_08.14.24.xlsx]Sheet2!$A:$A,2) is throwing a #REF! error in the cell. tried using data>text to columns thinking the to columns are not the ...
Captain K's user avatar
0 votes
1 answer
63 views

I have data in sheet 1 and sheet 2. I'm trying to use a MATCH/INDEX/VLOOKUP formula, to find data in another column. HOWEVER - instead of retuning the value or matching - I Just want to mark an X (or ...
D Stee's user avatar
  • 1
0 votes
0 answers
74 views

I am trying to use TEXTJOIN together with IFERROR and IF to look up values from other tabs and combine (where relevant). The first tab might not have value to receive and in which case want to get ...
Charles's user avatar
-1 votes
1 answer
67 views

This is a question to give an end to a discussion between me and the rest of my work friends, since we use the VLOOKUP formula differently. Can anyone help us? Basically, when I use this formula, my ...
user26619563's user avatar
0 votes
1 answer
38 views

I have two spreadsheets. I am scanning items onto sheet 2 under column A. On Sheet 1 I have all the information for Inventory. The Columns I will be using from sheet a is Column D and Column AA. So ...
CYL's user avatar
  • 49
-1 votes
1 answer
274 views

Assume I have this lookup table: Column A Column B 60% 10 70% 9 80% 8 90% 0 100% 0 110% 0 And the value I want to match is 65% I'm trying to find a formula that will give me the number that's in the ...
deals mcloof's user avatar
0 votes
0 answers
92 views

I am having a problem where I am unable to find out the issue with my formula in Excel. Everything worked fine until I added an additional argument to the string, but I do not see any erroneous commas ...
bowhunter3601's user avatar

1
2 3 4 5
91