I need to down fill column 'B' if the corresponding cells in column 'A' ARE NOT empty.
Here's a screenshot of what I need done
and here's the link to the above screenshot spreadsheet.
Appreciate your help.
Assume your data in A1:A10 as below :
A1: asd
A2: (blank)
A3: ddtgf
A4: yufjg
A5: (blank)
A6: gjfhgf
A7: (blank)
A8: fgn
A9: ghn
A10: awsfg
In B1, formula copied down :
=IF(A1="","","image"&TEXT(COUNTA(A$1:A1),"000000000")&".png")
I have number from 1 to 100 in column A1 to A100.
I am trying to achieve two results from data.
I want separately 1,2,3,4,5,6,7,8,9 and another one 10,20,30,40,50,60,70,80,90,100
Please help me
Maybe, in B1:
=1*(LEN(A1)=1)+2*(RIGHT(A1)="0")
double-click the fill handle and sort A:B on ColumnB.
This question is a bit vague. If you are looking to count by 10s, try adding a 10 in cell B1 and then adding the formula =B1+10 in cell B2. You can drag that formula down to count by 10s.
Let's say we want in column B "0, 1,2,3,4,5,6,7,8,9" and in column C "0, 10,20,30,40,50,60,70,80,90,100", put:
- =MOD(A1,10) as formula for the cell B1
- =INT(A1/10)*10 as formula for the cell C1
and then copy them to rest of the rows.
I am looking to create a cell in which I can enter a MM/YY entry and it will return inputs in different cells.
Ex.
Entry
A1= 10/2016
Excel would prepopulate
A2= 9/2015
A3= 10/2015
A4= 11/2015
B2= 6/2016
B3= 7/2016
B4= 8/2016
Thanks
Format the cells A1:B4 as m/yyyy
Then use these two similar formulas:
In A2:
=EDATE($A$1,ROW(1:1)-2)
In B2
=EDATE($A$1,ROW(1:1)-5)
and copy/drag the formulas down to the forth row.
I have some value in cell a1 and these formulas in other cells:
in cell a2: =$a$1+1
in cell a3: =$a$1+2
in cell a4: =$a$1+3
when I select cells a2:a4 and drag down until cell a7 in order to fill the formulas with continuation of the same logic, I get same formulas:
in cell a5: =$a$1+1
in cell a6: =$a$1+2
in cell a7: =$a$1+3
Instead of:
in cell a5: =$a$1+4
in cell a6: =$a$1+5
in cell a7: =$a$1+6
Is there a way to achieve this result by dragging?
Try this in A2:
=$A$1+Row(1:1)
Now as you drag down the Row(1:1) will change to Row(2:2),Row(3:3) and so forth. Thus adding the needed number.
Your sample may have been over-simplified but this should work in A2.
=$A1+1
Dragged down it will result in,
=$A2+1
=$A3+1
(etc)
You can do this without the formulae as well. Since what you want is basically an increasing series by 1, under your cell A1; enter your value in A1 (e.g. 2.3618), and hold the Ctrl button on your PC (not sure about Mac), and drag the bottom right corner of the cell A1 downwards as far as you want. (Also known as Fill Series)
PS: This doesn't work if A1 has irrational numbers (like sqrt(2), pi(), etc.)
if a1 is bob, b1 is james, c1 is ricky, and d1 is a ssn#(123-45-6789), how do i combine the first charactersos a1, b1, and c1 and the last four of the ssn so that it says bjr6789?
=LEFT(A1,1)&LEFT(B1,1)&LEFT(C1,1)&RIGHT(D1,4)
Edit: Changed to use row1.