Double Dash In Formulas

Sep 1, 2006

I recently saw Krishnakumar use the formula.
= sumproduct(--(a2:a10=d2),--(b2:b10=e2),c2:c10)

I haven't seen sumproduct used this way. Very cool. I see how it is working, but can anyone tell me more about the syntax of the dash dash used in array 1 and array 2? I have never seen this. How is it different than =SUMPRODUCT(1*(A1:A9=G1),1*(B1:B9=H1),C1:C9), which is the syntax I'm used to seeing.

View 9 Replies


ADVERTISEMENT

Reason For -- (Double Negative) In Formulas

Jul 2, 2008

I have come across this only a couple times and have tried in vain to find out what the "--" does in formulas

one example I have run accross in the forums is below

= SUMPRODUCT(--(ISNUMBER( FIND("SMS",A1))))

Also, is there a good refrence source for formulas like this?

View 3 Replies View Related

Parse After Each Dash

Aug 9, 2007

I work in the Oil and Gas industry and deal with large data tables that have "Location Codes" for lack of a better term.

The problem is that not all Databases use exactly the same format of code, they will however always have the following:

xx-xx-xx-xx ---> ie. a string of four numbers each seperated by a Dash.

This string sometimes will appear after a text name of varying length. With this in mind I would like to parse the four numbers into four different columns.

Things I've tried with some success:

Using the "Right" function to break off the location code off the end of the entire name, and then using the ".parse" command in VB to seperate the numbers at given intervals.

This is great for certain purposes however because the four numbers are not always 2 digits, and the ".parse" command cuts at given intervals it is hard to accurately parse an entire set of data.

Some examples of location Codes are given below:

9-23-78-11
WEST DOE 11-16-81-15
KNOPCIK 3-9-73-9

View 9 Replies View Related

Extracting Data After A Dash

Nov 9, 2011

[URL]...

This entire link is in one cell i would like the data Iowa_Health_System

What formula can i use

View 2 Replies View Related

Can't Get Rid Of Dash In Blank Cells

Feb 12, 2014

I have a spreadsheet that shows a dash in some blank cells and I can't get rid of it. Cells are formatted as general, there's no event code, no conditional formatting, no data validation, no auto-formatting, no nothing. I can copy a cell from outside the range with no dash in it and paste it into one of the cells with the dash and the dash remains. I can't figure it out.

View 9 Replies View Related

VBA Find Zero Value (Dash) In Accounting Format

Aug 15, 2013

I have a column of data that may or may not have a formula in them. The cells are formatted in Accounting, w/o the leading $ sign. (i.e. 133.57) The value zero shows up as a hyphen or dash.

The issue is the format of the cell. In that attached worksheet, i inserted two formulas in cell b6 and b7. Both formulas are exactly the same, but the formatting is different. One is in the accounting format, but the other is in general. When I run the code, only the general formatted cell gets found.

My real worksheet is in the accounting formatted code, so I don't want to change my worksheet's numbers into a general format. How I can find the zero value thats in an accounting format?

Below is a strip down version of the code.

VB:
Sub test()[COLOR=#333333]
[/COLOR] Dim rLookInADR As Range
Dim foundcell As Range
Set rLookInADR = Range("b1:b380")
Set foundcell = rLookInADR.Find(what:=0, LookIn:=xlValues, lookat:=xlWhole)
MsgBox (foundcell.Row)
End Sub
[COLOR=#333333][/COLOR]

View 5 Replies View Related

Clearing Entries By Dash Numbers

Feb 26, 2009

Here is what my worksheets looks like.

54841
54841-1
54841-2
54841-3
55654
58850
58850-1
53254
53254-1
53254-2
56696
56696-3
56696-4
53214
54789

So this list of information needs to be changed to the following

54841
54841-1
54841-2
54841-3
55654
58850
58850-1
53254
53254-1
53254-2
56696
56696-3
56696-4
53214
54789

All the numbers in red need to be cleared. No I have been able to find the original number and clear it. For example I can have the program find 53254 and clear it, but I am really having a tough time having it find -1, -2, -3 and so on. If the program finds a -1, I need any dashes after that to be cleared. If the program doesn't find a -1, then it goes to -2. If it finds a -2 then any number after that needs to be cleared. Here is the code I have to clear some of the numbers.

View 4 Replies View Related

Custom Number Format - Em Dash For Zero

Dec 19, 2011

I know this works because I have seen it in a workbook at a client's office.

I need a custon number format to substiture an "em" dash for zero. An em dash is a hyphen with the width a the letter m. There is also the so called en dash tht is the width the the letter n. A search of the internet shows that to create an em dash in a cell that contains a 0 ("zero"), hold down the alt key and type 0151 on the numeric keypad. Typing 0150 insert a en dash.

I want to be able to set this up as a custom number format in the custom number dialog.

View 5 Replies View Related

Remove Space After Dash In Excel VBA

Feb 24, 2012

I have some rows that have some text for example "0- 56933 tex". the numbers are not always the same, but there is a dash, and sometimes there is no space after the dash. I want get the numbers before the dash in a variable and the one after in another variable.

View 9 Replies View Related

Removing Dashes Deletes Everything After First Dash

Mar 25, 2013

I have entries that look like this - 300-7188258-1

300-8983980-5

I need to remove the dashes. I find and replace all - with nothing. that has worked for YEARS. Seems simple to me.

Today, when I do it, Excel leaves the "300" and removes everything else. I even did a CLEAN function and it still does it.

View 3 Replies View Related

How To Remove Dash Out Of First Two Letters Of A Sentence

Jun 12, 2013

How to remove a "-" out of first two letters of a sentence. if there is a "-"

for example:

BEFORE: Red-Blue Shirt With Ribbon
AFTER: Red Blue Shirt With Ribbon

However, if there is not a "-" in the first two letters then it not change anything.

For example --nothing changes:

BEFORE: Red Blue Shirt With Ribbon
AFTER: Red Blue Shirt With Ribbon

View 8 Replies View Related

Formula- To Isolate Everthing After The Last Dash

Dec 24, 2009

i am trying to isolate everthing after the last dash, now i did the same with the first dash using left, i tried to do the same using Right to get "155", but it gives me incorrect result,

Sheet1  ABC887878-1554-155 87878987878-1554-155 554-155Spreadsheet FormulasCellFormulaC8=LEFT(A8,FIND("-",A8)-1)C9=RIGHT(A9,FIND("-",A9)+1) Excel tables to the web >> Excel Jeanie HTML 4

View 9 Replies View Related

Format Cells To Show Dash For Zero

Jun 25, 2007

In excel if you press F5Special, you will be given to select cells with some criteria but there is no criteria to select cells with zero value in a selected range. Is any such option is available in excel or a macro is needed for the same?

View 9 Replies View Related

Create A Simple Dash Board Using Only Excel?

Dec 17, 2013

I am trying to create a simple dash board using only Excel and no VBA. What I am trying to do is I want to create dependent drop downs and link up drops downs that will pull out the required data individually or with combination of those two. For example, let's say

A column has Dates of transaction,

B column has Item name

C column has Units

D column has Month name

E column has Shifts (Morning or Evening)

I am trying to make a dash board that will pull total Sum of individual items based on

Only Date wise
Datewise + shift wise
Month wise
monthwise + shift wise

I managed to create drop down list for dates, months, and shifts but i dont know the way how to link the individual drop down lists together to pull the data based on the selection. which function i should use here and how?

View 5 Replies View Related

Ignore Dash Sign In Formula Subtotal

Jan 26, 2014

I want to know how many emails are in my list. There is dash sign where the emal id is not available. The subtotal formula gives me the total entries in range but I want to know only email count numbers.

In my range there are 6 entries and only 4 email ids. Now I'm getting output 6 but I want it 4 ignoring 2 dash signs.

View 10 Replies View Related

MID Formula: Extract Only The Text Between The 1st And 2nd Dash In A Cell

May 27, 2009

I need a formula that will extract only the text between the 1st and 2nd dash in a cell. Example:

10466193-1909457-
10648145-3026718-t526363536m

This formula would return only the following:

1909457
3026718

View 4 Replies View Related

Find And Replace Cell That Are Blank With The Dash

Oct 28, 2009

I have a row of 2900 single letter (middle initals) however 222 users have no middle inital. this is a password scheme and need 7 digits, without the middle inital i only have 6. so I want to replace all 222 cell that are blank with a dash can this be done without doing each by hand?

View 4 Replies View Related

Removing Dash From Text Number String?

Oct 3, 2010

We often get spreadsheets from our customer that are formatted with both comma and dash combinations. We would like to only have the comma seperation.

Example:
R1, R2, R3-R5, R30

Result:
R1, R2, R3, R4, R5, R30

There is usually only one alpha character but sometimes more. Example: CR1, CR2, CR3-CR5.

The following macro works great if there are no alpha characters. how to solve the alpha/numeric combination?

Function Nums(rng As Range) As String
Dim adnum As Integer, n As Integer, num, Txt As String
num = Split(rng, ",")

[Code]....

View 9 Replies View Related

Replace Space With Dash In Text String?

Aug 7, 2013

I am looking to replace the space in between numbers and letters in a text string. The number of entries varies with each row.

Example of the entries in the column I need to reformat. Each entry is in a new row.

Code:
10 SSS
24 MNL
17 HLG 18 LTN
17 CBG 17 HLG 15 HIL 15 thn 22 ALV
17 ELP 34 HLG 15 HIL18 THN 10 TTL

What I am looking to achieve:

Code:
10-SSS
24-MNL
17-HLG 18-LTN
17-CBG 17-HLG 15-HIL 15-thn 22-ALV

17-ELP 34-HLG 15-HIL 18-THN 10-TTL

View 3 Replies View Related

Auto Numbering With Mark (Dash) Combination

Apr 6, 2014

How to make auto numbering with mark "-" combination and result placing in D column, like this below ;

row/line
col.c
col.d
col.e

15
john
-
xxxx

[Code] ........

View 8 Replies View Related

Rounding Function That Makes The Resulting Zero A Dash

Feb 24, 2009

I am importing a .txt file into Excel that has two columns of dollars and cents. When I do my subtotals, all subtotals should be zero. Some of the totals show as 0.00, some as (0.00) and some as a dash which is what I would like for all of them. I have tried: ...

View 9 Replies View Related

Print Invoice Numbers Numerically With Dash In Front?

Feb 21, 2014

I have a macro already that prints my blank invoices sequentially. What I would now like to do, is insert a dash. SO instead of just the invoice number, I would like to have a 1- in front of each number;

1-1
1-2
1-3
1-4 ... etc.

I have uploaded the 'invoice' that I am currently using.

View 6 Replies View Related

UDF - Find Consecutive Numbers In Single Cell With Dash

Mar 14, 2014

I need find consecutive Numbers in a singles Cell but each numbers have a leading zero and "-" (Dash)

My problem is that the UDF that i found on this forum, is for numbers with out leading zero with comma ",",

So even if change the "," by "-", still getting a error Because the Code is designed to Read numbers Formats different than mine..

My Numbers are located in Cell G12 (down), and the message that i need to show in the cell result is :

If Found :
0 Consecutives --> 0
2 Consecutives --> 2
3 consecutives --> 3
4 consecutives --> 4
5 consecutives --> 5
2 Set of consecutives --> 2S

Example of 0 consecutives --> 01-04-07-12-25-30
Example of 2 consecutives --> 01-02-07-12-25-30
Example of 3 consecutives --> 01-02-03-12-25-30
Example of 4 consecutives --> 01-02-03-04-25-30
Example of 5 consecutives --> 01-02-03-04-05-30
Example of 2 sets of consecutive s --> 01-02-07-12-25-26

BTW my numbers start on Cell G12 down..
______G12_______
01-02-03-20-21-25

View 11 Replies View Related

If Cell Contains Dash And Symbol Surrounded On Both Sides By A Number Then True

Jan 13, 2012

I'm trying to make a formula but are failing. This is the data:

Cells:
a1= ant-gel
a2= ant - gel
a3 = size 1 - 6
a4 = size 1-6
a5 = book - 5
a6 = book-5
a7 = good book

I want a formula that displays "True" if cell contains a "-" symbol AND the dash symbol is surround on both sides by a number (a space can go between dash and number)

I want the results to go in column B

For example, if a1 contains a dash and dashes are surrounded on both sides by a number, then "TRUE", otherwise "FALSE.

therefore:
b1 = FALSE
b2 = FALSE
b3 = TRUE
b4 = TRUE
b5 = FALSE
b6 = FALSE
b7 = FALSE

View 2 Replies View Related

Make All Blank Cell Have Dash Without Affecting Other Cells With Data?

Jul 20, 2013

section 100
section 200

100-1
200-1

I have a large spreadsheet with text, numbers and blank cells. Is there a code a can use to make all blank cell have a dash (-) without affecting the other cell with data.

View 8 Replies View Related

Using VLOOKUP To Fill Data With A Partial String Match Separated With A Dash

Aug 18, 2014

I have a list of items in Column A and size info on Column B i want to being in the info to another sheet with a vlookup but the problem is that I have a lot of items with different colors so after the item no. it has a dash and a letter or two for the color so i want to bring into my new sheet all info.

I have in my old sheet for all items regardless of color so for instance in my old sheet i will BR1000-EM and then in my new sheet i will have BR1000-R and BR1000-SA and BR1000-YC how do i make a vlookup it should only lookup the values in both sheets only till the dash (i cant use a certain no. like left,6 because the item no can have more then 6 but it always has a dash when it has a color code) also not all items have dashes so the dash is not always there but when its there i would like that the lookup should stop by the dash.

View 6 Replies View Related

Concatenate Multiple Vlookup Results With Dash Exclude Null Values Or 0 Return?

Jun 10, 2014

The 3 vlookup will be in a single cell for concatenation like :

=vlookup1&"-"&vlookup2&"-"&vlookup3

Problem the are 3 vlookups where it will return names (with format -> Fname, Given Name Middle) and probably blank returns.

I have problem with the replace since there are also spaces between the Fname,Gname and Mname sample name with spaces.

View 6 Replies View Related

Using Cell References In File Paths For Formulas To Create Dynamic Formulas

Dec 3, 2013

I am using a lot of linked reports that have to be rewritten each month. For example smaller formulas look like this:

=('S:PUBLICProductionJob CardsMOLDING201311 November[440A SIDE SPOILER JOB CARD.xls]Production Parts'!B$228*2)+'S:PUBLICProductionJob CardsMOLDING201311 November[440A SIDE SPOILER JOB CARD.xls]Production Parts'!B$262+'S:PUBLICProductionJob CardsMOLDING201311 November[440A SIDE SPOILER JOB CARD.xls]Production Parts'!B$292

What I want to do is extract the file path from the above formula and make it a composite of several cell references.

So what I need is to have a cell where they can change the month and another where we can change the year. So I set up several named cells that look like this:

_MONTH =11 November
_YEAR =2013
_JOBCARD ='S:PUBLICProductionJob CardsMOLDING
_PATH =_JOBCARD & _YEAR &"" &_MONTH

I tried several versions, I am hoping for something like this:

=('_PATH &"[440A SIDE SPOILER JOB CARD.xls]"Production Parts'!B$228*2)+'_PATH &"[440A SIDE SPOILER JOB CARD.xls]"Production Parts'!B$262+'_PATH &"[440A SIDE SPOILER JOB CARD.xls]"Production Parts'!B$292

View 4 Replies View Related

Converting Formulas To Relative/absolute References With Formulas Referencing Other Sheets

Dec 15, 2008

I've found a few macros that will automate changing cell references from absolute to relative and they work great. However, when I run the macros on formulas that have references to another worksheet or workbook, the macro will not work correctly.

View 9 Replies View Related

Formulas To Hide Partial Concatenate Data And Determining Two Other Formulas

Dec 11, 2013

I'm trying to automate creating certain keyword combinations I need, based off of the values I input into reference cells in columns A - E; the goal is to compile a list of keywords which I will then use to track my rankings in search engines.

I'm looking to only output 500 keywords, so some of the cells in columns A, B, C & E will not contain data (column D will always have a primary Geo-target listed). This results in some of the concatenate formulas I've created outputting partial data (i.e. if there is no data in cell A10, and cell D2 contains the word "Knoxville", then cell I10 will output the data, "Knoxville "). How can I setup conditioning formatting or a formula so that these auto-generated cells appear blank if one of the reference cells has no data within it?The reason why I need the above to work is because I want to setup a formula that automatically counts the # of keyword combinations created by the data entered into any of the reference cells. With the partial combinations being listed, it skews my data. Which leads me to my next question: what is the best formula for counting the # of cells containing a full keyword combination from any of the cells listed in columns G - O (minus the data in the header cells; i.e. G1, H1, etc...)?Lastly, is there a formula I could use that would then aggregate all of the full keyword combinations within the "Complete Keyword List" column (column P)?

View 11 Replies View Related







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