Excel formula to compare cells on two sheets with result of third cell on 2nd sheet - excel-2010

compare 2 cells a3:B3 on raw data sheet to 2 cells a3:b3 on sheet 1 and result is c3 from sheet 1

Your request is not really clear but try this, paste this in Sheet3 A1 or where you want it:
=IF(CONCATENATE('raw data'!A1,'raw data'!B1)=CONCATENATE(Sheet1!A1,Sheet1!B1),"Same Match","No Match")

Related

Google Sheets - How to write a formula that minuses the selected cells from the top cell

How would I do it so if I had a list of numbers, how could I get every number below A1 to be minuses from A1 and put next to that cell?
Paste this in B2 or see the Example Sheet
=ArrayFormula(IF(A2:A="",,A2:A-$A$1))
What about this simple formula in A2 cell?
=INDEX(A1+B2:B6)

Conditional formatting based on changes in text between two Google sheets

I have two Google sheets that have exactly the same columns and rows except Sheet 1 gets updated and Sheet 2 does not. I would like to have the cells in the updated Sheet 1 be conditionally formatted based on the cells in Sheet 2. Both sheets are using text/strings rather than numbers.
Example:
Sheet 1/cell A1: text = "Closed"
Sheet 2/cell A1: text = "Opened"
Sheet 1/cell A1 gets conditionally formatted as RED when Sheet 1/cell A1 is both
a) different from Sheet 2/cell A1 and
b) contains the word "Closed" as opposed to "Open."
Would also like to know if it's possible to do this on cells that contain multiple words!
Have been looking in REGEXMATCH but can't seem to get it. Any help appreciated.
try:
=REGEXMATCH(INDIRECT("Sheet2!C:C"), "Closed|Banned")

An if formula for multiple cells in another sheet

I have a google sheet that has 2 sheets, Sheet 1 with info in cells A and B.
I need to add a little formula in sheet 2, to check if any of the cells in sheet 1 column A (numbers) is bigger than the Numbers in column B cells, and then if so, say Yes else NO.
So IF in sheet1 any of the cells in Column A is bigger than in Column B, Then...."YES"
This checks on a row by row basis. If you want to know if ANY row in column A is bigger than in column B, that would be a bit different.
=if(Sheet1!A1>Sheet1!B1,"Yes","No")

How do I organize formulas to work with columns in google sheets

Hi so I'm trying to make a spreadsheet in Google Sheets that takes two numbers and subtracts them and then does it in the next row .
So example the formula in C1 would be "subtract(A1, B1)" in the first row. But then in the next row I would like it to change to "subtract(A2, B2)" and output in C2.
(Without having to go in each C cell and change the formula of course)
So how do I do that and also how do I apply a formula to multiple cells of a row (C1,C2,C3,C4,C5, etc....)
Just put =MINUS(A1,B1) into C1 and then copy it and paste it in the remain rows of column C and the spreadsheet automatically adjusts the row numbers for you.
#Cooper's Answer above is perfect. I'm just giving a alternative here using array formulas, because it's easy.
Put this in D2
=ARRAYFORMULA(MINUS ( B2:B, MULTIPLY( 2.5, QUOTIENT(C2:C,15))))

Sparkline in every row with only one arrayformula google sheets

I would like to plot sparklines (barchart with the value to show in B-row and the max-value in die C-row: see linked file) in every cell from A2 to A5 using ony one arrayformula (=ARRAYFORMULA( ...) in A2 which can plot spakrlines in every cell from A2 to A5.
Link to file: sparkline arrayformula
Thx for any help,
Gerd
SPARKLINE does not work with arrayformula. I think the best you can do is put this in A2 and drag it down past A5. It will pick up new data.
=iferror(SPARKLINE(B2,{"charttype","bar";"max",C2}),"")
Hmm
Make a blank column A:A.
=ARRAYFORMULA(IF(ISBLANK($A$1:$A),"", SPARKLINE({0,1},{"color","#ddd"})))

Resources