+ Reply to Thread
Results 1 to 17 of 17

How to fill informations?

  1. #1
    Registered User
    Join Date
    01-28-2016
    Location
    Czech Republic
    MS-Off Ver
    newest
    Posts
    16

    How to fill informations?

    Hi guys,

    easy question. im maiking statistics and i need to get information from cell A6, A12, A18....

    When i fiill to first line =A6
    second =A12
    3rd = A18
    when i "strectch it" i wont fill to 4th line =A24, but illogicly =A9 on 5th =A10...

    How can i fill me neede information?

    P.S.: Sry guys for my bad englando.. :D

  2. #2
    Forum Expert
    Join Date
    02-19-2013
    Location
    India
    MS-Off Ver
    07/16
    Posts
    2,386

    Re: How to fill informations?

    assuming your data is in column A and you want that formula to work in Column B
    then use in B1 below formula
    =INDEX(A:A,ROWS($A$1:A1)*6) and drag down then B1 will have A6's value B2 will have A12's value and so on


    if you want to have B1 = A6 value then C1 = A12 value, D1=A18 value then use below
    =INDEX($A:$A,COLUMNS($A$1:A1)*6) and drag to right
    Last edited by hemesh; 01-28-2016 at 11:47 AM.
    -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------

    WANT TO SAY THANKS, HIT ADD REPUTATION (*) AT THE BOTTOM LEFT CORNER OF THE POST

    More we learn about excel, more it shows us, how less we know about it.

    for chemistry
    https://www.youtube.com/c/chemistrybyshivaansh

  3. #3
    Registered User
    Join Date
    01-28-2016
    Location
    Czech Republic
    MS-Off Ver
    newest
    Posts
    16

    Re: How to fill informations?

    Im sure that i want first version. But when i want select data from different page, so first will be:
    1st : =údaje!G6
    2nd : =údaje!G12

    So = INDEX(údaje!G:údaje!G, ROWS(údaje!$G$1:údaje!$G$1)*6)

    becouse it is not working for me.. ^^ I need to use it many times a i need to understand it..

  4. #4
    Forum Expert
    Join Date
    02-19-2013
    Location
    India
    MS-Off Ver
    07/16
    Posts
    2,386

    Re: How to fill informations?

    = INDEX(údaje!G:údaje!G, ROWS(údaje!$G$1:údaje!$G1)*6) try this
    i have removed red part in above formula
    = INDEX(údaje!G:údaje!G, ROWS(údaje!$G$1:údaje!$G$1)*6)

  5. #5
    Forum Expert newdoverman's Avatar
    Join Date
    02-07-2013
    Location
    Port Dover, Ontario, Canada
    MS-Off Ver
    2010
    Posts
    10,330

    Re: How to fill informations?

    I don't know the language but I think that this is the equivalent of the formula given by hemesh.

    Formula: copy to clipboard
    Please Login or Register  to view this content.
    <---------If you like someone's answer, click the star to the left of one of their posts to give them a reputation point for that answer.
    Ron W

  6. #6
    Registered User
    Join Date
    01-28-2016
    Location
    Czech Republic
    MS-Off Ver
    newest
    Posts
    16

    Re: How to fill informations?

    it looks i have to use ";" intead of ",", but i looks like it has to have 3 parts =INDEX(field; row; [colomn])

  7. #7
    Forum Expert
    Join Date
    02-19-2013
    Location
    India
    MS-Off Ver
    07/16
    Posts
    2,386

    Re: How to fill informations?

    as you are using only one parameter such as column G, this will work.

    In case you are using a matrix such as 5 rows and 5 columns i.e. A1:D5 then you need to supply rows and columns both to fetch data from Specific row and column

    in that case =index(A1:D5,2,3) will give you data from second row and third column.

    You can just change commas "," to semicolons ";" to make formula work in your case which is provided post#4 or post #5

  8. #8
    Registered User
    Join Date
    01-28-2016
    Location
    Czech Republic
    MS-Off Ver
    newest
    Posts
    16

    Re: How to fill informations?

    Guys, it isnt working.. here is link to my doc - http://leteckaposta.cz/384737604

    Can u please fill it on page 2? As i said ill need to implement it like 20 times..

  9. #9
    Forum Expert
    Join Date
    02-19-2013
    Location
    India
    MS-Off Ver
    07/16
    Posts
    2,386

    Re: How to fill informations?

    May be you need to change "," to ";"

    formula is in column C in sheet 2
    Attached Files Attached Files

  10. #10
    Registered User
    Join Date
    01-28-2016
    Location
    Czech Republic
    MS-Off Ver
    newest
    Posts
    16

    Re: How to fill informations?

    Ahhh maybe it doesnt work due to language.. Thanks guys!

  11. #11
    Forum Expert
    Join Date
    02-19-2013
    Location
    India
    MS-Off Ver
    07/16
    Posts
    2,386

    Re: How to fill informations?

    You are welcome ! I forgot truly about language part.

  12. #12
    Forum Expert newdoverman's Avatar
    Join Date
    02-07-2013
    Location
    Port Dover, Ontario, Canada
    MS-Off Ver
    2010
    Posts
    10,330

    Re: How to fill informations?

    Maybe this is what will work
    Formula: copy to clipboard
    Please Login or Register  to view this content.

  13. #13
    Registered User
    Join Date
    01-28-2016
    Location
    Czech Republic
    MS-Off Ver
    newest
    Posts
    16

    Re: How to fill informations?

    And guys, if i want to select f.e. A5, A11, A17..?

  14. #14
    Forum Expert newdoverman's Avatar
    Join Date
    02-07-2013
    Location
    Port Dover, Ontario, Canada
    MS-Off Ver
    2010
    Posts
    10,330

    Re: How to fill informations?

    This will extract A5, A11, A17 etc as you fill down the column. This formula assumes the data is in column A and you are extracting to column B. If you are extracting to a different location change the "B" references to the starting references that you are using including the row number so if you are starting in F4 for example change the B1 to F4.
    Formula: copy to clipboard
    Please Login or Register  to view this content.

    I don't know if you need a ; or a , after A:A choose what you need.

  15. #15
    Forum Expert
    Join Date
    02-19-2013
    Location
    India
    MS-Off Ver
    07/16
    Posts
    2,386

    Re: How to fill informations?

    How about
    =index(A:A,(ROWS($A$1:A1)*6)-1)

  16. #16
    Registered User
    Join Date
    01-28-2016
    Location
    Czech Republic
    MS-Off Ver
    newest
    Posts
    16

    Re: How to fill informations?

    Thats clever i have to try it..:D

  17. #17
    Forum Expert
    Join Date
    02-19-2013
    Location
    India
    MS-Off Ver
    07/16
    Posts
    2,386

    Re: How to fill informations?

    @ Mihelherbiii ! Thanks

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Copying some informations
    By Halid in forum Excel General
    Replies: 22
    Last Post: 04-22-2014, 12:50 AM
  2. Three Informations in one Bar Chart
    By tehNewbie in forum Excel Charting & Pivots
    Replies: 1
    Last Post: 06-18-2013, 05:51 AM
  3. [SOLVED] Function that add new informations from the same cell every day
    By enitron in forum Excel Formulas & Functions
    Replies: 19
    Last Post: 12-26-2012, 10:17 AM
  4. Copy, pasting the informations
    By share knowledge in forum Excel Programming / VBA / Macros
    Replies: 3
    Last Post: 07-20-2009, 04:45 AM
  5. Getting informations from several workbooks
    By z00misen in forum Excel Formulas & Functions
    Replies: 0
    Last Post: 09-15-2006, 07:47 AM
  6. informations about MAP
    By Marina Limeira in forum Excel General
    Replies: 1
    Last Post: 01-19-2006, 05:30 PM
  7. informations search
    By DanBal in forum Excel General
    Replies: 4
    Last Post: 06-06-2005, 06:05 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1