Formula search problems

Emyan

New Member
Joined
Nov 30, 2023
Messages
3
Office Version
  1. 2019
Platform
  1. Windows
I'm using a set of formulas to search through payroll codes in a column and then tally hours but the formula will return for two different codes that have similar numbers and I am unable to figure out how to make it stop.

=--ISNUMBER(SEARCH("98.1",'PP23'!$E14))

this is the first formula in a set I use and it will return the code 98.1 but also returns 398.1 so it ends up adding up hours for codes it doesn't require.
any one know a fix or did I make a mistake ?
 

Excel Facts

How to calculate loan payments in Excel?
Use the PMT function: =PMT(5%/12,60,-25000) is for a $25,000 loan, 5% annual interest, 60 month loan.
=--ISNUMBER(SEARCH("98.1",'PP23'!$E14)

This formula returns both the 398.1 column on the left and the 98.1 column on the right.
 

Attachments

  • Data.PNG
    Data.PNG
    11.1 KB · Views: 4
Upvote 0
Will there always be a space in front of the number?
If so try:
=--ISNUMBER(SEARCH(" 98.1",'PP23'!$E14)
 
Upvote 0
Solution

Forum statistics

Threads
1,215,200
Messages
6,123,604
Members
449,109
Latest member
Sebas8956

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