Cheril Ann

New Member
Joined
Apr 24, 2013
Messages
6
Hi good night,

I am trying to get a text return in my workbook.

I have sales order workbook week 2 with a number in column A and remarks (text) in column B. I pulled a fresh update and of the sales order week 3 and would like to have the remarks from last week be looked up in week 2 to week three. But its a text result and i get N/A.

Any assistance will be great.

Thanks
Cheril-Ann
 

Excel Facts

Which came first: VisiCalc or Lotus 1-2-3?
Dan Bricklin and Bob Frankston debuted VisiCalc in 1979 as a Visible Calculator. Lotus 1-2-3 debuted in the early 1980's, from Mitch Kapor.
I tried the istext with vlookup formula and the regular vlookup which returns NA. In the cells are text.

Thanks
 
Upvote 0
Unless I'm missing the point, you can try this:
Code:
=vlookup(MyOrderNo,MyOrderCommentRange,2.0)

This assumes that your data is in a vertical table, order numbers is column A, comments in column B. You are matching the order number to contents of column A to return the contents of column B in MyOrderCommentRange. Your range has to include both columns (say, A1:B200). This also assumes that the order numbers are unique and don't occur multiple times in column A.

If that works, you can wrap it in IfError to supress N/As when the order number isn't found in the previous week. Also, mind your ranges, you'll want to make them absolute references or defined names.
 
Upvote 0

Forum statistics

Threads
1,215,694
Messages
6,126,253
Members
449,305
Latest member
Dalyb2

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