I have a in A column a set of values with Name and Id
like in cell A2 it will be --- 1100768_Sakhawat_Akram, 1100768_Sakhawat_Akram
like in cell A3 it will be --- 1134260_Malik, 1134260_Malik
like in cell A4 it will be --- 1759519, Hajraf_N_Aloteibi
like in cell A5 it will be --- Hamad_Osman, 1128046
i did tried with left, right, mid, find and search function but nothing is working
as result in cell b2 will be 1100768 and in c2 will be Sakhawat
as result in cell b3 will be 1134260 and in c3 will be Malik
as result in cell b4 will be 1759519 and in c4 will be Hajraf
as result in cell b5 will be 1128046 and in c5 will be Hamad
in column B emp Id and Column C emp name
not sure as which function to use
In B2, formula copied down :
=AGGREGATE(14,6,--MID(A2,ROW($1:$250),7),1)
In C2, formula copied down :
=LEFT(SUBSTITUTE(SUBSTITUTE(A2,", ","_"),B2&"_",""),FIND("_",SUBSTITUTE(SUBSTITUTE(A2,", ","_"),B2&"_",""))-1)
Related
Values Entered into Excel
A2 =4
A3 = 2500
C2= 15
D2= 30
E2 =35
F2= 40
Values to Populate:
I want to populate cells starting in cell C5 through Cells [C5 + (value in A2)] with the value in A3
So in this example C5 through F5 with the value in A3 (2500)
I want to populate cells starting in C6 through Cells [C6 + value in A2) with the corresponding cell values in (C2 + value in A2)
so in this example C6 = C2, D6 = D2, E6 = E2, F6 = F2
You only populate as many columns across as the number in A2
I have some Google Sheet with 2 columns:
A B
a1 ..
a2 ..
.. b1
a2 b2
.. b3
.. means empty cell;
I want to fill column A with values from B if cell in B is filled.
In this example I want to get table:
A B
a1 ..
a2 ..
b1 b1
b2 b2
b3 b3
I did something this:
=IF(NOT(ISBLANK(B1));B1)
But in situation when B1 is empty but A1 isn't A1 getting "FALSE" instead of current value A1.
How do I fix my snippet?
I have the following in one column, it keeps going down with random letters but always end with 1.
a1
a1
b1
b1
b1
b1
b1
c1
c1
c1
how can i make it fill series but start again from one when ever a new letter.
It should look like this:
a1
a2
b1
b2
b3
b4
b5
c1
c2
c3
You can genereate a new series in the column beside it. Lets assume your data starts in A1. In put 1 in B1 and in B2 place the following:
=IF(left(A1,len(A1)-1)=left(A2,len(A2)-1),B1+1,1)
Copy B2 down.
When you are done, you can copy your information from column B and paste is a values if you do not want the numbers changing again.
I'm a beginner in VBA. Even after trying to find a solution and searching through all the forums, i was not able to find the correct way of dealing with this. Here's my problem:
Data ( in sheet1 )
a a1 a2 a3 a4
b b1 null b3 b4 b5
c c1 c2 c3
....
Required output ( in sheet2 )
a a1
a a2
a a3
a a4
b b1
b null
b b3
b b4
b b5
c c1
c c2
c c3
....
Thanks in advance.
Add column labels (may be deleted later) apply the process described here and filter ColumnC to delete rows blank in that column.
How do you define variable cell address in Excel. For example consider the case where the content of cell A1 is 5, cell A2 is 2, cell A3 is 10 and cell A4 is 1. How do I enter a general formula to SUM the content of the cells A7 (A1+A2) through A9 (A3-A4)? I would then like to drag the formula to columns B through CJ,... and repeat similar calculations noting that values of B1 through CJ4 are different than A1 through A4. I appreciate any suggestions.
=SUM(INDEX(A:A,A1+A2,1):INDEX(A:A,A3-A4))