+ Reply to Thread
Results 1 to 10 of 10

Automatic data filling by cell /Column reference

  1. #1
    Registered User
    Join Date
    01-11-2012
    Location
    india
    MS-Off Ver
    MS office 2010
    Posts
    16

    Post Automatic data filling by cell /Column reference

    Dear All,

    i have to prepare a machine loading pattern sheet where child parts of an assemblies to be filled in machine at designated place.

    In my excel sheet machine designated location are L1/1 - L1/8 to L3/8.
    Child part location is fixed in database are mentioned from L4 :L14 along with there designated name.

    i want to fill fixed location automatically when i search Assembly name in A3. Eg ; INPUT SHAFT ASSEMBLY, also my unfilled cell become different color or else.

    How can i do this- pls help

    Capture.JPG

    Machine Loading Pattern.xlsx
    Last edited by AliGW; 12-31-2019 at 04:50 AM.

  2. #2
    Forum Moderator AliGW's Avatar
    Join Date
    08-10-2013
    Location
    Retired in Ipswich, Suffolk, but grew up in Sawley, Derbyshire (England)
    MS-Off Ver
    MS 365 Subscription Insider Beta Channel v. 2404 (Windows 11 22H2 64-bit)
    Posts
    80,779

    Re: Automatic data filling by cell /Column reference

    In B5 copied across:

    =IFNA(INDEX($K$4:$K$14,MATCH(B4,$L$4:$L$14,0)),"")

    In B10 copied across:

    =IFNA(INDEX($K$4:$K$14,MATCH(B9,$L$4:$L$14,0)),"")

    In B15 copied across:

    =IFNA(INDEX($K$4:$K$14,MATCH(B14,$L$4:$L$14,0)),"")

    CF rule:

    =B5<>""

    Applies to:

    =$B$3:$I$3,$B$8:$I$8,$B$13:$I$13
    Attached Files Attached Files
    Ali


    Enthusiastic self-taught user of MS Excel who's always learning!
    Don't forget to say "thank you" in your thread to anyone who has offered you help.
    You can reward them by clicking on * Add Reputation below their user name on the left, if you wish.

    Forum Rules (updated August 2023): please read them here.

  3. #3
    Registered User
    Join Date
    01-11-2012
    Location
    india
    MS-Off Ver
    MS office 2010
    Posts
    16

    Re: Automatic data filling by cell /Column reference

    ohh. thanks a lot. its solved now.

  4. #4
    Forum Moderator AliGW's Avatar
    Join Date
    08-10-2013
    Location
    Retired in Ipswich, Suffolk, but grew up in Sawley, Derbyshire (England)
    MS-Off Ver
    MS 365 Subscription Insider Beta Channel v. 2404 (Windows 11 22H2 64-bit)
    Posts
    80,779

    Re: Automatic data filling by cell /Column reference

    If that takes care of your original question, please select Thread Tools from the menu link above and mark this thread as SOLVED.

    Also, if you are no longer using Excel 2010, please update your forum profile.

  5. #5
    Registered User
    Join Date
    01-11-2012
    Location
    india
    MS-Off Ver
    MS office 2010
    Posts
    16

    Re: Automatic data filling by cell /Column reference

    one thing is still missing. its not changing the data as per A3 cell where different assemblies number will come. i have added dropdown list now.
    pls check now Attachment 655860

  6. #6
    Forum Moderator AliGW's Avatar
    Join Date
    08-10-2013
    Location
    Retired in Ipswich, Suffolk, but grew up in Sawley, Derbyshire (England)
    MS-Off Ver
    MS 365 Subscription Insider Beta Channel v. 2404 (Windows 11 22H2 64-bit)
    Posts
    80,779

    Re: Automatic data filling by cell /Column reference

    Your chosen layout is not optimum. Ideally you need a different layout. Also, you have not included any locations in the second set of data - please do this and post the workbook again.
    Last edited by AliGW; 12-31-2019 at 05:09 AM.

  7. #7
    Registered User
    Join Date
    01-11-2012
    Location
    india
    MS-Off Ver
    MS office 2010
    Posts
    16

    Re: Automatic data filling by cell /Column reference

    done.
    pls check again Attachment 655861

  8. #8
    Forum Moderator AliGW's Avatar
    Join Date
    08-10-2013
    Location
    Retired in Ipswich, Suffolk, but grew up in Sawley, Derbyshire (England)
    MS-Off Ver
    MS 365 Subscription Insider Beta Channel v. 2404 (Windows 11 22H2 64-bit)
    Posts
    80,779

    Re: Automatic data filling by cell /Column reference

    Lay out the lookup table this way:

    Excel 2016 (Windows) 32 bit
    K
    L
    M
    N
    3
    INPUT SHAFT ASSEMBLY Assembly Location Remark
    4
    INPUT SHAFT ASSEMBLY INPUT SHAFT L3/3 SAFA
    5
    INPUT SHAFT ASSEMBLY Ball Bearing 62x25x17 L3/1 BVD
    6
    INPUT SHAFT ASSEMBLY Ball Bearing 20x47x14 L2/3 FBN
    7
    INPUT SHAFT ASSEMBLY Helical Spring L1/1 FH
    8
    INPUT SHAFT ASSEMBLY SPRING PLATE L1/2 SDFG
    9
    INPUT SHAFT ASSEMBLY Washer L1/3 THDRF
    10
    INPUT SHAFT ASSEMBLY Wave Washer L1/5 HGFE
    11
    INPUT SHAFT ASSEMBLY Shim 20x32x3.100 L1/7 DHERT
    12
    INPUT SHAFT ASSEMBLY PINION GEAR G11 L3/7 JR
    13
    INPUT SHAFT ASSEMBLY DAMPER-LINK L3/8 RGWE
    14
    INPUT SHAFT ASSEMBLY Circlip 28x2 L2/8 WG
    15
    COUNTER SHAFT ASSEMBLY Assembly Location Remark
    16
    COUNTER SHAFT ASSEMBLY COUNTER SHAFT L1/3
    17
    COUNTER SHAFT ASSEMBLY FIX-GEAR G21 L1/5
    18
    COUNTER SHAFT ASSEMBLY Ball Bearing 20x47x14 L1/7
    19
    COUNTER SHAFT ASSEMBLY Shim 20x32x3.100 L3/7
    Sheet: Example

    Then this in B5:

    =IFNA(LOOKUP(2,1/(($K$4:$K$50=$A$3)*($M$4:$M$50=B4)),$L$4:$L$50),"")

    B10:

    =IFNA(LOOKUP(2,1/(($K$4:$K$50=$A$3)*($M$4:$M$50=B9)),$L$4:$L$50),"")

    B15:

    =IFNA(LOOKUP(2,1/(($K$4:$K$50=$A$3)*($M$4:$M$50=B14)),$L$4:$L$50),"")
    Attached Files Attached Files

  9. #9
    Registered User
    Join Date
    01-11-2012
    Location
    india
    MS-Off Ver
    MS office 2010
    Posts
    16

    Re: Automatic data filling by cell /Column reference

    thank you very much.

  10. #10
    Forum Moderator AliGW's Avatar
    Join Date
    08-10-2013
    Location
    Retired in Ipswich, Suffolk, but grew up in Sawley, Derbyshire (England)
    MS-Off Ver
    MS 365 Subscription Insider Beta Channel v. 2404 (Windows 11 22H2 64-bit)
    Posts
    80,779

    Re: Automatic data filling by cell /Column reference

    My pleasure.

+ 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. Replies: 1
    Last Post: 11-20-2019, 10:58 PM
  2. [SOLVED] Automatic filling and sorting of data
    By agrwl.anmol in forum Excel Formulas & Functions
    Replies: 15
    Last Post: 11-14-2019, 05:59 AM
  3. [SOLVED] Filling a series with the reference cell in different sheets
    By balickma in forum Excel Formulas & Functions
    Replies: 1
    Last Post: 05-01-2018, 01:32 PM
  4. Replies: 9
    Last Post: 08-24-2017, 09:16 PM
  5. [SOLVED] filling cell in column "a" if data present in column "b" issue.
    By timmatthews in forum Excel Programming / VBA / Macros
    Replies: 3
    Last Post: 11-07-2013, 11:43 AM
  6. Excel 2007 : Drop Down List, Automatic cell filling
    By Mimil in forum Excel General
    Replies: 4
    Last Post: 01-20-2011, 11:08 AM
  7. Filling Series - by Cell Reference
    By Excellerator in forum Excel Formulas & Functions
    Replies: 11
    Last Post: 09-20-2006, 11:08 AM

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