Function to extract Exact values

panyagak

Active Member
Joined
Feb 24, 2017
Messages
299
Hi Mrexcel-ians

Google has failed me!!

I need a function to extract in a column in a range of only values (no text), any exact number of my choice, like: 1.00 or 2.00, then filter them out separately.

Regards
 

Excel Facts

How to show all formulas in Excel?
Press Ctrl+` to show all formulas. Press it again to toggle back to numbers. The grave accent is often under the tilde on US keyboards.
Can you elaborate on what you want.

Perhaps make a dummy set of data and a dummy set of results you'd like so we know what you're exactly looking for.

Kind regards,

Chris
 
Upvote 0
Any range, say A1 downwards, is appropriate:

Assuming in Cell A1:A5
3.56
2.02
1.99
45.88
3.86.

Then in Cell B1 assuming I need only 3.86 (same for the rest), then it should show this:

3.56 FALSE
2.02 FALSE
1.99 FALSE
45.88 FALSE
3.86. TRUE

thanks
 
Upvote 0
a
b
1
3.56
true
2
2.02
true
3
1.99
true
4
45.88
true
5
3.86.
false

<tbody>
</tbody>


B1=ISNUMBER(A1) copy down
 
Upvote 0
MARZIOTULLIO.

No no: ISNUMBER(A1) would return all, TRUE

You did not understand my problem: compare your results & mine. ALL ARE VALUES (NONE IS TEXT!!)

I only need 3.86
 
Upvote 0
If the desired output is TRUE or FALSE you don't even need an IF function, just add "=B5=3.86"

Excel by default evaluates relational operators in formulas like = < > and returns TRUE or FALSE
 
Upvote 0

Forum statistics

Threads
1,214,594
Messages
6,120,436
Members
448,964
Latest member
Danni317

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