Help needed

Oliver3000

New Member
Joined
Dec 27, 2022
Messages
3
Office Version
  1. 2013
Platform
  1. Windows
I need help with the following. If I type a text name in a single cell, I need to get text and number data in columns for this name. A simple example, if I type the text "dog" in one cell, I should get the following data in several columns and in the same row, "big", "hungry 100", "12/25", "Monday", "$350". What is the best way to do this? The preferred option is to enter the text instead of selecting it from the filter
 

Excel Facts

How to find 2nd largest value in a column?
MAX finds the largest value. =LARGE(A:A,2) will find the second largest. =SMALL(A:A,3) will find the third smallest
Welcome to the MrExcel board!

A simple example, if I type the text "dog" in one cell,
Is that in a particular column?

Should we just guess what should be entered if you type "cat" in the cell/column?

We need more detail about just what you have, where it is and what you are trying to achieve.

The preferred option is to enter the text instead of selecting it from the filter
Further to my previous point, can you explain what the reference to a filter is about?

I suggest that you investigate XL2BB for providing sample data & expected results to make it easier for helpers to understand just what you have & where it is and also what you want & where it is to be.
 
Upvote 0
Welcome to the MrExcel board!


Is that in a particular column?

Should we just guess what should be entered if you type "cat" in the cell/column?

We need more detail about just what you have, where it is and what you are trying to achieve.


Further to my previous point, can you explain what the reference to a filter is about?

I suggest that you investigate XL2BB for providing sample data & expected results to make it easier for helpers to understand just what you have & where it is and also what you want & where it is to be.
It should pull data from an existing table.
 
Upvote 0
This is what I got from your question. Data Table:
Book1
IJKLMN
1InputItem1Item2Item3Item4Item5
2Dogbighungry 10025/12Monday$350
3Catsmallfull 10026/12Tuesday$400
Sheet1

Input Table:
Book1
ABCDEF
1InputItem1Item2Item3Item4Item5
2Dogbighungry 10012/25Monday$350
Sheet1
Cell Formulas
RangeFormula
B2B2=IF([@Input]<>"",IFERROR(VLOOKUP([@Input],tblData,2,0),""),"")
C2C2=IF([@Input]<>"",IFERROR(VLOOKUP([@Input],tblData,3,0),""),"")
D2D2=IF([@Input]<>"",IFERROR(VLOOKUP([@Input],tblData,4,0),""),"")
E2E2=IF([@Input]<>"",IFERROR(VLOOKUP([@Input],tblData,5,0),""),"")
F2F2=IF([@Input]<>"",IFERROR(VLOOKUP([@Input],tblData,6,0),""),"")
Cells with Data Validation
CellAllowCriteria
A2List=$I$2:$I$3

The Input column in the Input Table uses a Data Validation List built from the Input Column in the Data Table. They are both Excel Tables, and the validation list will grow as the data in the Data Table grows.
Since spilled data isn't available in a table, each column in the Input Table requires an VLOOKUP formula.
This should give you a starting point.
 
Upvote 0
It should pull data from an existing table.
You clearly know what your data is like and what you are trying to achieve, but we only know what you tell or show us which so far is pretty much nothing. I think that there will be people who will try to help but we have to understand ...
what you have & where it is and also what you want & where it is to be.
A good way to help show/describe that is to give a small set of sample dummy data with XL2BB (link provided previously) & describe your requirement carefully in relation to that sample data.
 
Upvote 0
This is what I got from your question. Data Table:
Book1
IJKLMN
1InputItem1Item2Item3Item4Item5
2Dogbighungry 10025/12Monday$350
3Catsmallfull 10026/12Tuesday$400
Sheet1

Input Table:
Book1
ABCDEF
1InputItem1Item2Item3Item4Item5
2Dogbighungry 10012/25Monday$350
Sheet1
Cell Formulas
RangeFormula
B2B2=IF([@Input]<>"",IFERROR(VLOOKUP([@Input],tblData,2,0),""),"")
C2C2=IF([@Input]<>"",IFERROR(VLOOKUP([@Input],tblData,3,0),""),"")
D2D2=IF([@Input]<>"",IFERROR(VLOOKUP([@Input],tblData,4,0),""),"")
E2E2=IF([@Input]<>"",IFERROR(VLOOKUP([@Input],tblData,5,0),""),"")
F2F2=IF([@Input]<>"",IFERROR(VLOOKUP([@Input],tblData,6,0),""),"")
Cells with Data Validation
CellAllowCriteria
A2List=$I$2:$I$3

The Input column in the Input Table uses a Data Validation List built from the Input Column in the Data Table. They are both Excel Tables, and the validation list will grow as the data in the Data Table grows.
Since spilled data isn't available in a table, each column in the Input Table requires an VLOOKUP formula.
This should give you a starting point.
Thank you.
 
Upvote 0

Forum statistics

Threads
1,215,011
Messages
6,122,677
Members
449,092
Latest member
tayo4dgacorbanget

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top