How Can I Look For A Character Or An Operator In A FORMULA

Jul 9, 2008

Iīm trying to find a way to get a formula which can look if there is a character (letīs say it is "-") in a formula which is, by the way, variable (letīs say each cell has different values like: =899+59-6 and so it goes and goes), and brings me a true or false value.

Specifically it is like this:

I have formulas to be evaluated like the following:

=899+59-6

I need a formula which can look into the formula and if it finds the character "-" or a "+", brings me a true or false message.

View 9 Replies


ADVERTISEMENT

Like Operator Not Working For Character List

Aug 14, 2014

When I run this code it does the exact opposite of what I want it do (if not contained in that character list then delete). So basically if it not in the character list then delete, but it if is in the character list it deletes....

[Code] .....

View 4 Replies View Related

Date Formula With Variable Date & Comparison Operator

May 14, 2008

I have a date in cell A1. I have an operator in cell A2. This info is then merged in to cell A3 with the following formula: =A2&TEXT(A1,"dd/mm/yyyy"). My data range is called "wc_date_of_loss". I want to use this info in a SUMPRODUCT formula (as the dates and operators can be changed by the end user). What's the correct syntax for that?

=SUMPRODUCT(--(wc_date_of_loss&A3))
=SUMPRODUCT(--(wc_date_of_loss=A3))
=SUMPRODUCT(--(wc_date_of_loss=TEXT(A2&A1,"general,dd/mm/yyyy")))

View 6 Replies View Related

Replace Character Used In Formula Where Formula References Cell

Feb 23, 2008

I am using vlookup to get a cell value from another sheet, but if the cell has "&" or "/" I need to substitue "&" and "/" with "and" so that the cell can be added later to a url.

i am using =VLOOKUP(a1,Sheet2!A1:W17968,6) to get the value of a1 in sheet 2 and return the value of column 6

this will return "Audio Cables & Leads" but i need it to say Audio Cables and Leads

I need the formula to also check and replace "/" with "and" as well so cables/wire will be Cables and wire

View 9 Replies View Related

-- An Operator

Jan 25, 2009

I have on occaision seen -- within a formula. e.g =SUMPRODUCT(--(PMonth=$A3),--(PName=$A$1),PLTime). Could someone explain the relavance/effect or use of this as it seems outside of standard operators.

View 9 Replies View Related

How To Use LIKE Operator

May 25, 2012

How to use the LIKE operator? I have tried:

mytable.field like '098'
mytable.field like '098'
mytable.field like '&098&'
mytable.field like '*098*'

This is in A SQL string connecting to a MSSQL db over ODBC

View 3 Replies View Related

Between Operator

Feb 9, 2007

Excel has operators for Less than, Greater than, Equal to, etc., etc. Does anyone know if there is a Between operator? (Maybe an undocumented or little-known feature like DATEDIF)?

There is a Between Feature in the Conditional Formatting Dialog Box - it would sure be nice to be able to use it in a non-formatting formula, or maybe you could explain how you pros achieve a "between" result without resorting to VBA.

View 9 Replies View Related

CountIf Formula Using / Character?

Feb 11, 2012

I want to count the number of cells in column B that contain the start with the string US/IL. Here's the formula that I created, but it returns a value of 0 instead of 590.

Is there something I need to do differently when a cell value contains the / character in the string?

=SUM(COUNTIF(B5:B1830,"US/IL"))

Once I have the correct formula for the above, I want to write another formula on the row below that counts how many rows of this 590 value have a corresponding "Yes" value in Column M.

The first formula will sit in cell B1840

The second formula will sit in cell B1841

View 6 Replies View Related

Formula For Pulling First Character

Jun 24, 2006

I am working with a tab delimited file, and am needing to have a column of its own that will pull the first letter of another column. i.e. in A will be the title of the book, and in column C I need to have the first letter of the title of the book appear for other uses.

View 2 Replies View Related

Not Equal To Operator

Feb 12, 2009

revised this code to reflect the "not equal to". I want the user to only enter "In" or "Out." Therefore, If cells b19:B26 does not have either word, then the message box will prompt the user to enter the correct word again. I think my code needs to be revised into some kind of loop.

View 9 Replies View Related

MOD Operator Ambiguity

Jun 30, 2008

MOD Operator gives one result when this is used as worksheet function and the different one when I use that in VBA.

Cell A1 = 01-Jan-08
Cell A2 = 02-Jan-08

In Worksheet
=MOD(A1-A2,8) Gives 7

In VBA
Reminder = Range("A1")-Range("A2") Mod 8 Gives -1

View 9 Replies View Related

Formula That Will Remove The First 2 Characters And The Last Character

Mar 10, 2009

i need a formula that will remove the first 2 characters and the last character from the below, so below the result should be R0131644, the number of characters vary from row to row, they are not always 11

EUR01316441

View 9 Replies View Related

Formula To Remove All But The Last Of The Same Character In A Cell

Aug 21, 2009

I have data in cell A1 and A2 which looks like below

SECTOR - 11, HIRAN MAGRI, - 313001
MAIN BRANCH, 30-15-171 DABA GARDENS, NEAR SARASWATI PARK,-530020,

In cell A1 the number of hypens (-) are 2
In cell A2 the number of - are 3

What I am looking for is a formula which can remove all additional - except the last one. Therefore the result of the formula should be

SECTOR 11, HIRAN MAGRI, - 313001
MAIN BRANCH, 30 15 171 DABA GARDENS, NEAR SARASWATI PARK,-530020

View 9 Replies View Related

Trying To Filter Data Using The Like Operator

Aug 20, 2009

I'm using the below code to get only those rows which contains 'Deploy' or 'Pre-prod' but it gives less rows than its supposed to do.

View 11 Replies View Related

(Select Case) With AND Operator?

Jan 7, 2013

While proof-reading my code, I've noticed that these two true select cases ("S" and "W") shown below wouldn't "yield" what I want. I've tried to replace AND (highlighted in red) with "," (comma) but I still get the same result - it still returns a value evaluating either one of two conditions but not BOTH:

Code:
sChar = Split(Waypoint, ",")
For j = LBound(sChar) To UBound(sChar) Step 3
Lat = sChar(j)
Lon = sChar(j + 1)
Elev = Val(sChar(j + 2))
Next j

[code].....

View 3 Replies View Related

Variable As Comparison Operator

Aug 16, 2007

Can you use a variable as an operator? For example:

Dim op
op = ">"
If Var1 op Var2 Then MsgBox "It Works!"

I have parameters stored in a database and each parameter includes an operator. When I compare a given value to the parameter, I was hoping to do that dynamically by extracting the operator from the parameter and using that in the comparison.
Otherwise, the only way I can see to do it is create a Function with a Select Case list for all the operators to check the parameter, do the comparison, then return the value to the Function.

View 2 Replies View Related

Aligning Part Of A Formula To A Certain Character Limit (63)?

Jul 24, 2014

Is there anyway of aligning part of a formula to a certain character limit (63)?

For example:

Aaaaaa(A1), bbbbbbb(B1), 1111111.00(C1)
Aaaa(A2), bbbb(B2), 11.00(C2)

to

Aaaaaa(A1), bbbbbbb(B1),____________1111111.00(C2)
Aaaa(A2), bbbb(B2),______________________11.00(C2)

View 1 Replies View Related

If / Then Formula: Makes A Character That Has A Score Of 9 For One Of His Attributes?

Oct 29, 2008

I'm helping out a community that puts out a role playing game by making a character sheet for their gaming system. It's normally a pen-and-paper type affair, but a few people have reached out to me and asked me to make it. Now, one thing that I really thought would be nifty would be to make it persistent. I know of the Excel basics, creating basic formulas and the such, but this is where I hit a brick wall.

For the character sheet, they normally have basic attributes on a 1-20 scale. These attributes are accomanied by a bonus. The only thing is those, while these bonuses go across a linear path (For attribute 1, it's -30, for 2 its -20, for 3 its -10, for 4 its -5 for 5 its 0....), I cant seem to figure out how to create some kind of If/Then formula for it....

Heres my example:

Brad makes a character that has a score of 9 for one of his attributes. The bonus given to someone with a 9 is a +10. What I'm looking to do is create a table that sees that 'If (c9)=9, Then (d9)=+10'...

And my second related issue...

Is there any possible way to do the above mentioned formula in relation to a drop down selection bar? It's the same thing here; To break it down simply, It would be excellent if there was a way for it to say If (a10)=Warrior, then (c10)= +10.

View 3 Replies View Related

Formula To Find Required Character In Cells?

Dec 26, 2011

I have following table,

Item NoSectorDestination
12346589BOM-DXBN/A
12346589DXB-FRAFRA
12346589FRA-DXBN/A
12346589DXB-BOMN/A
87665976NAG-BOMN/A
87665976BOM-DXBN/A
87665976DXB-PARPAR
87665976PAR-DXBN/A
87665976DXB-BOMN/A
87665976BOM-NAGN/A

Row 2 to 5 are of same item no. The result that is required is in Column C. The formula to check same item numbers in column A and give the result as "FRA" in column C3 with C2, C4, C5 showing as not applicable. Similarly for the next item no

View 3 Replies View Related

Character Length Formula - Add Trailing Spaces

Feb 11, 2013

Is there a fomula that can add trailing spaces. For example....I need a certain feild to be 11 Characters in length. So lets say in Column A, I have a bunch of different words:

House
Bird
Up
Down
Yes
No

I would like to put a formula in column B that takes my original text and adds blank spaces to the end of it until it's 11 Characters. So "House" in Column A would be "House " in column B.

View 3 Replies View Related

Wild Card Character Used In Array Formula

Jun 26, 2013

The usage of the wild card character is not getting me the results I need for a formula I am using at work. When the wild card asterisk character is removed, I get the correct result but only for an exact match of the particular text. I need it to match the "Particular Text plus another text. The Text is CBKC. Then there is also CBKC 5400 and so on. I need to have the wild card expression character before and after the CBKC characters. The formula is below that I used.

=sum(--k2:k500),--(c2:c500=" Y"),--(D2:D500=" Permit"),--(s2:s500="*CBKC*))

Excel doesn't like the way I am expressing the wild card inside the double quotes......the column getting added if the matches are found is column K. The other columns have to meet the criteria in the formula.

View 6 Replies View Related

Pivot Table Filters With OR Operator?

Nov 26, 2013

filter a pivot table that contains these 3 column fields: User 1, User 2, and User 3.

However, when I want to see the results for "John" in all those fields, I need to use one filter at a time. Is there any other way to see all results of the Pivot Table where "John" is a User, no matter if he is the 1, 2 or 3 user?

View 3 Replies View Related

How To Use Between Operator In AND Function While Doing Conditional Formatting

Oct 5, 2013

I have three columns named "Type" , "start_date" and "end_date".

Type column can hold only "A","B" and "C".
start_date and end_date columns are time stamps. ex: 9/14/13 9:35 AM

I want to do conditional formatting like,

If type = "A" and (end_date - start_date) value between 30 and 40 (in hrs) then it should be amber.

I did for greater than and lesser than values, but I am facing problem while doing the above one.

View 3 Replies View Related

Arithmetic Operator From Cell Reference

Jul 23, 2014

I need to switch between less than or greater than in my formula based on user selected drop down that gives the user two options "" My formula has "

View 9 Replies View Related

Operator To Find A Word In A Sentence

Jul 26, 2006

I dont have much experience with VBA and im looking for an operator that helps me find a word (or part of a word) in a sentence located in a cell. I have to do this to create a user friendly form. I cant use the Find option in excel because i need to do this in a form.

View 3 Replies View Related

Formula To Extract Undefined Number Of Names Following Specified Character

Apr 8, 2014

I need a formula which can pick out the names from string of text, each name follows "-->", the number of names in each cell differs and is undefined. The result needs to be posted into each column following these cells.

An example of a cell is below:

"W/L FIGHTER Str TD Sub Pass EVENT METHOD ROUND TIME

Loss -->--> Tom Aaron -- -- -- -- Strikeforce - Hen... U. DEC 3 5:00

-->--> Matt Ricehouse -- -- -- -- Dec. 4, 2010

Win -->--> Tom Aaron -- -- -- -- Strikeforce - Hea... SUB 1 0:56

-->--> Eric Steenberg -- -- -- -- May. 15, 2010 Guillotine Choke"

I have tried using text to columns but everything after the first line is not recognised (when I click finish anything after "TIME" is simply not there).

Example attached : UFCv1.xlsx

View 7 Replies View Related

How To Remove Special Character Without Disturbing Other Character

Nov 27, 2012

To all sifus out there, how can i transfer from these:

NAS517-3-2
-41353913
NAS517-3-5
NAS517-3-4
-42MS27253-2
-43353908
-44357182

To these:

NAS517-3-2
353913
NAS517-3-5
NAS517-3-4
MS27253-2
353908
357182

View 1 Replies View Related

Append All Digits Before Character To All Numbers Between The Same Character

May 18, 2008

I have got a list of numeric abbreviations, for instance 10739011/21/31/41. What it should really display are the numbers 10739011, 10739021, 10739031 and 10739041 (the first six figures stay the same). All the numbers in my list are 8 figures long. I want to change the list from the list seperated by the backward slash to the complete numbers. I have uploaded an example of the list with backward slash between the numbers. Is there a way that Excel can automatically change these numbers to the full numbers?

Because all the numbers are 8 figures long, I thought the first 6 figures of the 1st number can be copied and those 6 figures pasted before the other two figures after the backslash. Auto Merged Post Until 24 Hrs Passes;sorry, pressed OK too quickly. The problem is that there are sometimes 4 numbers in the cell, sometimes 6 and once three. I would like Excel to complete all the numbers in the cell and then move on to the cell underneath it and so on. Also, I would like each number to have it's own cell.

View 5 Replies View Related

How Like Operator Work With Brackets And Number Tags

Feb 26, 2014

How the like operator works with brackets and # tags etc...

View 9 Replies View Related

Adding Logical Operator To Line Of Code

Nov 4, 2009

I'm just trying to add the "=" operator to the below "" operators, as this line of code presently doesn't account for any numeric matches, of which I have plenty, and DO need to account for! Gosh, might someone here know how to integrate such a thing into this code?

If Range("I3") Temp Then Range("I1") = Temp

View 9 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved