I have a table that contains two fields, Column A and Column B
Column A
Column B
Cell A
Cell B
How to double line a grid cell, then change the color of one of the lines Like the table below
Column C
Column D
Cell A
Cell 2
Cell B
I Want the Cell A to be green And the Cell B to be black
I want to column C be double line contain Cell A And Cell B that Cell A be green And the Cell B to be black
Related
I have an excel data like -
I need to add blank cells in column C and D with Values from Column A and B Like -
'How to do this in excel?
I am trying to use the conditional formatting in Excel so that
if a cell in Column A is blank and the cell in Column H (of the same row) is also blank then the cell in Column G gets highlighted in blue.
At the moment I am using this formula and it doesn't seem to work.
Excel_Formula_BlankCellsFormat
Try this rule-
=AND($A1="",$H1="")
I have 2 sheets in one spreadsheet(assume sheet A and sheet B)
and I want to query all data from sheet B(SELECT *) to sheet A
WHERE value of column E in sheet A = value of column E in sheet B
AND value of column G in sheet A = value of column F in sheet B
what should the formula be?
thanks
You could use a filter formula to achieve that =filter('Sheet A'!A2:Z,'Sheet A'!E2:E = A1)
Enter the formula in cell A2 of Sheet B, and enter your filter term in cell A1
I have 3 columns of different lengths. Columns 2 and 3 are equal, column 1 will always be smaller. I need to check using a 4th column if a cell in column 1 is equal to any cell in column 2, there will be no duplicates in column 2. If it is, make the cell in column 4 equal to the cell in column 3 that is in the same row as column 2.
You need to use Vlookup
=Vlookup($A1,$B:$C,2,FALSE)
Where A is column 1, b & c are column 2 & 3
I have an excel sheet where one column is filled with forlmulae that link it to other cells. Say Column R is linked to values in columns I through L.
Column T is to have a similar relation with Columns M through P as Column R had with Columns I through L.
I could drag the formula but there is another cell in between that I do not want to disturb.
Is there any way I can copy the formulae from the column R and paste them in column T ?
If you don't want to change column, you should write in formula a '$' char before column name.
For example:
B1 = A1 + C1
You don't want to change column C write:
B1 = A1 + $C1
But if you don't want to change cell C1, write:
B1 = A1 + $C$1