Excel - External Formula - excel

I have some external trading system that creates a formula in excel to show real time stocks, options and strikes. I was trying for few days to link this formula to others cells, but so far unsuccessful.
Cell A1: BBDCC36
Cell B1: =BC|COT!BBDCC36.PEX
What i need:
B1 to be like: =BC|COT!&A1&.PEX
I need some reference to a cell, but i couldnt do it. There is any trick to do that?
Thank you!

Maybe all you are lacking are the "s around the text elements:
="BC|COT!"&A1&".PEX"

Related

Formula to find a cell data among a column and then copy the detail associated with it in another cell

Hope that you are feeling great today : )
I am looking to a formula with which I would be able to find a match for a cell among a column of data and then copy the associated detail next to it.
Let me give you a simple example below:
So the main problem is that I cannot use simply a VLOOKUP because I am not trying to compare the "(match)Column" cells with the "(search)Column" and "(data)Column" - but quite the opposite way around.
I have tried to use the following formula but unfortunately without any success:
=IF(ISERROR(MATCH(”*” & A1 & ”*”,$B$1:$B$3,0)),"-","A1")
in which - reflecting to the sample: A1 is the first cell of (search)Column and B1:B3 is the (data)Column.
Thank you very much in advance for your kind help and I wish you a further nice day!
Try this:
The formula in D2 translates to:
=INDEX($B$1:$B$4,SUMPRODUCT(ISNUMBER(SEARCH(" "&$A$2:$A$4&" ",C2))*ROW($A$2:$A$4)))

Excel: In what order a word appear

I have this case right here. The table below is what I expect, but it's originally without a formula.
Info for the pic:
On the green cell, i'd like to find two criteria from two different cells: "Car" & "Ford", in what line are they?
The blue cell is the second example. It is the same but different criteria. So I want to do this to build a product number with my own formula that I already built, except this last things.
My question is:
What formula that can do that. I did a full day research on the internet, google and youtube. But I don't get and answer. And I'm not an expert in a excel. I only did and googling all the things I did in excel. So please help me find out how.
Thank You
In this example the formula shown is entered in E2 and filled down.
Note this is an array formula, so use Ctrl+Shift+Enter to enter it.
I'd personally suggest you look into Pivot Tables. They do exactly what you want and probably more.
https://support.office.com/en-us/article/Create-a-PivotTable-to-analyze-worksheet-data-A9A84538-BFE9-40A9-A8E9-F99134456576

How can I make a criteria in an excel forumla reference text in another cell?

I am using a SUMIFs formula in excel. One of my criteria consists of text, but the text will vary for every row I am applying this formula too. Rather than typing out that text for each column, I'd like to find a way to include in my formula the reference for where that text comes from, and have excel grab it for each row.
This picture shows what I am currently working with.
The last term in the formula is "BT-107-141-1". That is also the value of A2 in this sheet. Rather than typing "BT-107-141-1" (and doing the same thing for every row I have), can I direct excel to use whatever value is in A2 as the criteria in this formula?
I was trying to use INDIRECT, but couldn't get it to work. Something like "VALUE($A2)" might work?
Please let me know if you have any questions, I would really appreciate some help! Thanks.

Excel - Time formula - between

My formula does not work. I have a time in and time out. I want a formula that will tell me if the employee will be there during that time.
Below is my formula
=IF(AND(C2>=$D$16,C2<$E$16),"Yes","No")
I want a formula to be able to give me the result in the attached picture.
Thank you for your help.
Spreadsheet Screenshot
Try using MEDIAN(starttime, endtime, time) like this:
=IF(C2=MEDIAN($D$16,$E$16,C2),"Yes","No")
In this example, C2 is the cell with the time you wish to examine.

What is wrong with this Excel formula to sum() next 2 columns in the same row?

I did try to enter in a cell formula:
=SUM(ADDRESS(ROW(),COLUMN()+1):ADDRESS(ROW(),COLUMN()+2))
Intention is summing next 2 cell in the same row.
But the spreadsheet complains with error on it!
Used functions: ADDRESS(ROW(),COLUMN()+1). Work fine but together - not!
In B7 cell:
(I need to write a generic formula that is independent from location and calculates the sum of the next tho cell in the same row.
I am not interested in specific addresses or in a way to copy any specifically written formula across a spreadsheet.
I need a formula that works independently from a location!
Is it possible in Excel at all?)
Thanks.
ADDRESS returns address as a string. You cannot SUM it because SUM(A2:A3) is very different from SUM("A2:A3").
You could look into SUM(INDIRECT("A2:A3")), but you should not, for the mere reason that Excel's formulas are already relative unless made absolute.
If you want to sum two cells to the right of B7, enter =SUM(C7:D7) to B7. The formula will change if you copy it to another cell.
If you meant to enter the formula with a macro, then use the R1C1 notation and enter =SUM(RC[1]:RC[2]).
sorry im dont speak english , but a have what you need
= SUM(INDIRECT(CONCATENATE(ADDRESS(ROW();COLUMN()+1);":"; ADDRESS(ROW();COLUMN()+2))))
Regards

Resources