Isnumber then Vlookup correlating Text and numbers help

Bthomson

New Member
Joined
May 10, 2022
Messages
4
Office Version
  1. 365
  2. 2021
Platform
  1. Windows
Hi,

Trying to do something that is WAY too advanced for myself. will try to explain the context of what I need to achieve etc etc.

I have an excel with financial product names in lets say column A
I then have current value of said financial product in Column C
I then have the percentage that they pay for financial product in Column D
and then finally column E is the cost of the current value (So the percentage of the current value)

Current value is always a "-" (dash?) until a numerical value is input

I have a table on a separate sheet that is blank - the table would be as follows

Product name - current value - percentage - Cost

So what I would like to achieve is, ISNumber in column C ? if Yes number, then Vlookup and pull all the product names that have a number in corresponding Current Value

then repeat vlookup to pull all the current values, all the percentages, all the costs into the table

I really have no idea to go about this, standard vlookup is about as advanced as I have been before.

Thanks
 

Excel Facts

Formula for Yesterday
Name Manager, New Name. Yesterday =TODAY()-1. OK. Then, use =YESTERDAY in any cell. Tomorrow could be =TODAY()+1.
1) You said output table is blank at the beginning. What vlookup_criteria (product name, I guess) shoud be, if it does not exists?

2) Do you refer to get it done via VBA? Its quite easy to trigger change in column C, then update to result table.
 
Upvote 0
Hey, I have made a sort of mock up of how it looks and tried to explain a little better how I would like it to work.

thanks
 

Attachments

  • Excel help.PNG
    Excel help.PNG
    49.7 KB · Views: 7
Upvote 0
Could you post again with row and column index? We could not see where is column I or U
 
Upvote 0
Without Row nos and Column nos it is really hard to give a ready to implement formula.
Your profile says you have MS 365 & 2021 so you should have the filter function.

See if this works for you.
Book4
ABCD
23ProductFUM ($)% Calc
24Proj 35000.00562.8
25
26
27
Sheet1
Cell Formulas
RangeFormula
A24A24=FILTER($I$7:$I$9,ISNUMBER($U$7:$U$9),"")
B24:C24B24=FILTER($U$7:$V$9,ISNUMBER($U$7:$U$9),"")
D24D24=B24*C24
Dynamic array formulas.
 
Upvote 0
Sorry, stupid from me haha. have included columns and rows.
 

Attachments

  • Excel help.PNG
    Excel help.PNG
    64.1 KB · Views: 5
Upvote 0
So in
A27 try this
Excel Formula:
=FILTER($I$7:$I$40,ISNUMBER($U$7:$U$40),"")

and B27 this
Excel Formula:
=FILTER($U$7:$V$40,ISNUMBER($U$7:$U$40),"")
 
Upvote 0
So in
A27 try this
Excel Formula:
=FILTER($I$7:$I$40,ISNUMBER($U$7:$U$40),"")

and B27 this
Excel Formula:
=FILTER($U$7:$V$40,ISNUMBER($U$7:$U$40),"")
Didnt work unfortunately, returned value symbol. The data its pulling from is on another tab in the real version of this scenario - so I changed it to correspond to that. frustrating the contents are sensitive info so cant upload the real excel.
 
Upvote 0
Start with in A27 typing "=Filter(" then drag and select the rows in the column with your Financial Products in it. Absolute address the selection.
Enter comma then type "Isnumber(" then drag and select the rows in both the FUM $ (should be the same start and end row as in the Fin Products selection) and Absolute address that.
Close with 2 brackets "))".
Then come back to me on the result.
 
Upvote 0

Forum statistics

Threads
1,215,006
Messages
6,122,666
Members
449,091
Latest member
peppernaut

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