Home |
Search |
Today's Posts |
#1
![]() |
|||
|
|||
![]()
Hi EveryBody,
In column C I have numbers 1,3,6,9,12,15,18,21 In column A In have numbers 1 to 21 and in column C I have values corresponding to column B(i.e. correspondig to 1 to 21 numbers). Now in column D I need to get the values corresponding to column A from the column B(i.e D1=B1,D2=B4 as value coeesponding to number three is in B4... So on) Ex: columnA ColumnB ColumnC ColumnD 1 8.21 1 8.21 2 10.46 3 11.21 3 11.21 6 4.98 4 5.67 9 6.44 5 2.34 12 1.89 6 4.98 15 . 7 6.41 18 . 8 5.66 21 . 9 6.44 10 5.23 11 2.44 12 1.89 .. .. 21 Any suggestion please. Regards Ramana |
#2
![]() |
|||
|
|||
![]()
Use the vlookup function in column D. Ex, in D1, =vlookup(c1,a:b,2,false).
Autofill that formula through column D. "ramana" wrote: Hi EveryBody, In column C I have numbers 1,3,6,9,12,15,18,21 In column A In have numbers 1 to 21 and in column C I have values corresponding to column B(i.e. correspondig to 1 to 21 numbers). Now in column D I need to get the values corresponding to column A from the column B(i.e D1=B1,D2=B4 as value coeesponding to number three is in B4... So on) Ex: columnA ColumnB ColumnC ColumnD 1 8.21 1 8.21 2 10.46 3 11.21 3 11.21 6 4.98 4 5.67 9 6.44 5 2.34 12 1.89 6 4.98 15 . 7 6.41 18 . 8 5.66 21 . 9 6.44 10 5.23 11 2.44 12 1.89 .. .. 21 Any suggestion please. Regards Ramana |
#3
![]() |
|||
|
|||
![]()
Hi,
try in column D function =LOOKUP(C1;A20:A1;B1:B20), if you write to to column C1 number 1 in column D1 display value 8.21. Then you can copy this formula to another cell. Note 1 : you have must sort values by A, it means 1,2,3,...(help excel function LOOKUP) Note 2 : #N/A problems =IF(ISNA(LOOKUP(C1;A20:A1;B1:B20));" ";LOOKUP(C1;A20:A1;B1:B20)). Maybe this would help you. Maco. "ramana" wrote: Hi EveryBody, In column C I have numbers 1,3,6,9,12,15,18,21 In column A In have numbers 1 to 21 and in column C I have values corresponding to column B(i.e. correspondig to 1 to 21 numbers). Now in column D I need to get the values corresponding to column A from the column B(i.e D1=B1,D2=B4 as value coeesponding to number three is in B4... So on) Ex: columnA ColumnB ColumnC ColumnD 1 8.21 1 8.21 2 10.46 3 11.21 3 11.21 6 4.98 4 5.67 9 6.44 5 2.34 12 1.89 6 4.98 15 . 7 6.41 18 . 8 5.66 21 . 9 6.44 10 5.23 11 2.44 12 1.89 .. .. 21 Any suggestion please. Regards Ramana |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Column Chart with 2 values in each column | Charts and Charting in Excel | |||
Formula to compare multiple rows values based on another column? | Excel Worksheet Functions | |||
How sum values in column B using values in column A as the conditi | Excel Worksheet Functions | |||
Move column values w/o formula | Excel Worksheet Functions | |||
Can you average data in 1 column based on a range of values in another? | Excel Worksheet Functions |