returning range of data from a database

cal6404

New Member
Joined
Jul 5, 2018
Messages
3
Hi, I have a database with sets of data containing long numbers such as 1132334256. I want to pull all the data for the sets of numbers from 1132334256 to 1132334270. what would the expression be? I was thinking string between (ends with "256" and ends with "270"). I need to return all values that end with the last three values
 

Excel Facts

Copy PDF to Excel
Select data in PDF. Paste to Microsoft Word. Copy from Word and paste to Excel.
Do these values in the DB all live in the same field(column). Which one. If a greater range, then advise. This will probably require a MACRO. Provide as much detail as possible about your DB structure.
 
Upvote 0
offhand, seems like this would be worth a try:
Code:
>=1132334256 and <=1132334270
 
Upvote 0

Forum statistics

Threads
1,214,389
Messages
6,119,232
Members
448,879
Latest member
VanGirl

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