+ Reply to Thread
Results 1 to 20 of 20

Need help to update the table

  1. #1
    Forum Contributor
    Join Date
    07-15-2015
    Location
    Kolkata
    MS-Off Ver
    2010 & 2013
    Posts
    303

    Need help to update the table

    Hi All,

    Please help me to fill up the table by formula when i put the date in green marked cell in Channel Tips sheet. Data will fetch from Master Data sheet. Please help me urgent basis.
    Attached Files Attached Files

  2. #2
    Valued Forum Contributor PFDave's Avatar
    Join Date
    05-17-2012
    Location
    Milton Keynes, England
    MS-Off Ver
    Excel 2013
    Posts
    1,067

    Re: Need help to update the table

    You'll need to use SUMIFs to complete this but on first view the date format in the master sheet and Channel Tips sheets is different - one is DD/MM/YYYY the other is MM/DD/YYYY

    I'll have a play now and see what I can produce, but someone else may be able to do this quicker
    Last edited by PFDave; 10-24-2016 at 09:19 AM.

  3. #3
    Forum Expert
    Join Date
    05-05-2015
    Location
    UK
    MS-Off Ver
    Microsoft Excel for Microsoft 365 MSO (Version 2402 Build 16.0.17328.20068) 64-bit
    Posts
    28,209

    Re: Need help to update the table

    Please add expected results (Manual Calculation) to your file.

    I assume only ("_BC_")means searching for this string in "Blast Name???

  4. #4
    Forum Contributor
    Join Date
    07-15-2015
    Location
    Kolkata
    MS-Off Ver
    2010 & 2013
    Posts
    303

    Re: Need help to update the table

    Correct. JohnTopley
    Attached Files Attached Files
    Last edited by Sanjibghosh; 10-24-2016 at 09:32 AM.

  5. #5
    Forum Expert
    Join Date
    05-05-2015
    Location
    UK
    MS-Off Ver
    Microsoft Excel for Microsoft 365 MSO (Version 2402 Build 16.0.17328.20068) 64-bit
    Posts
    28,209

    Re: Need help to update the table

    Changed Dates in column B to DD/MM/YY (form mm/dd/yy) :you need to look at getting you dates formats standardised.

    in B5

    =SUMPRODUCT(('Master Data'!$D$2:$D$100)*(INT('Master Data'!$B$2:$B$100)='Channel Tips'!$B$3)*(ISNUMBER(SEARCH("NORAM",'Master Data'!$A$2:$A$100)))*(NOT(ISNUMBER(SEARCH("_BC_",'Master Data'!$A$2:$A$100)))))

    in C5

    =SUMPRODUCT(('Master Data'!$E$2:$E$100)*(INT('Master Data'!$B$2:$B$100)='Channel Tips'!$B$3)*(ISNUMBER(SEARCH("NORAM",'Master Data'!$A$2:$A$100)))*(NOT(ISNUMBER(SEARCH("_BC_",'Master Data'!$A$2:$A$100)))))

    in B14

    =SUMPRODUCT(('Master Data'!$D$2:$D$100)*(INT('Master Data'!$B$2:$B$100)='Channel Tips'!$B$12)*(ISNUMBER(SEARCH("NORAM",'Master Data'!$A$2:$A$100)))*(ISNUMBER(SEARCH("_BC_",'Master Data'!$A$2:$A$100))))

    in C14

    =SUMPRODUCT(('Master Data'!$E$2:$E$100)*(INT('Master Data'!$B$2:$B$100)='Channel Tips'!$B$12)*(ISNUMBER(SEARCH("NORAM",'Master Data'!$A$2:$A$100)))*(ISNUMBER(SEARCH("_BC_",'Master Data'!$A$2:$A$100))))

    Replace "NORAM" with "APJ" & "EMEA" for other rows
    Last edited by JohnTopley; 10-24-2016 at 11:23 AM.

  6. #6
    Forum Contributor
    Join Date
    07-15-2015
    Location
    Kolkata
    MS-Off Ver
    2010 & 2013
    Posts
    303

    Re: Need help to update the table

    Hi All,

    can it possible to update the subject line in cell no D3 in Channel Tips sheet fetching from (Column C) Master Data sheet based on Data (green mark cell) in Channel Tips sheet? please help me to update this by formula.

  7. #7
    Forum Expert
    Join Date
    05-05-2015
    Location
    UK
    MS-Off Ver
    Microsoft Excel for Microsoft 365 MSO (Version 2402 Build 16.0.17328.20068) 64-bit
    Posts
    28,209

    Re: Need help to update the table

    Try

    =INDEX('Master Data'!$C$2:$C$100,MATCH(B3,'Master Data'!$B$2:$B$100,0))

    BUT sort out dates in column B of 'Master Data' to be same as B3 format AND date only (not Date and Time)

  8. #8
    Forum Contributor
    Join Date
    07-15-2015
    Location
    Kolkata
    MS-Off Ver
    2010 & 2013
    Posts
    303

    Re: Need help to update the table

    Hi john,

    please let me know how to sort out dates in column B of 'Master Data' to be same as B3 format AND date only by format cells options

  9. #9
    Forum Expert
    Join Date
    05-05-2015
    Location
    UK
    MS-Off Ver
    Microsoft Excel for Microsoft 365 MSO (Version 2402 Build 16.0.17328.20068) 64-bit
    Posts
    28,209

    Re: Need help to update the table

    Format an empty column e.g O as "dd/mm/yyyy".

    In O2

    =INT(B2)

    Drag down

    COPY column O and PasteSpecial VALUES to column B.

    How is the data input to column B initially? if it automated i.e. from an external source, then you will to repeat the above every time you get new data.

  10. #10
    Forum Contributor
    Join Date
    07-15-2015
    Location
    Kolkata
    MS-Off Ver
    2010 & 2013
    Posts
    303

    Re: Need help to update the table

    Thanks John... if i need any kind of help further i will let you know.

  11. #11
    Forum Contributor
    Join Date
    07-15-2015
    Location
    Kolkata
    MS-Off Ver
    2010 & 2013
    Posts
    303

    Re: Need help to update the table

    I have create a table in report deck sheet and manually put the data in the table as per the information from all tables in Channel Tips sheet. Now i want to know it can be automatically update the table in report deck sheet when i create a new tables below in Channel Tips sheet. Please help

  12. #12
    Forum Expert
    Join Date
    05-05-2015
    Location
    UK
    MS-Off Ver
    Microsoft Excel for Microsoft 365 MSO (Version 2402 Build 16.0.17328.20068) 64-bit
    Posts
    28,209

    Re: Need help to update the table

    What is "Report Deck" sheet: it isn't in your original file.

    Please post new file showing what is required.

  13. #13
    Forum Contributor
    Join Date
    07-15-2015
    Location
    Kolkata
    MS-Off Ver
    2010 & 2013
    Posts
    303

    Re: Need help to update the table

    Sorry missed the attachment...
    Attached Files Attached Files

  14. #14
    Forum Expert
    Join Date
    05-05-2015
    Location
    UK
    MS-Off Ver
    Microsoft Excel for Microsoft 365 MSO (Version 2402 Build 16.0.17328.20068) 64-bit
    Posts
    28,209

    Re: Need help to update the table

    Are you asking how to extract the 4QFY16 data from "Master Data"? If so, what defines 4QFY16 ? or what are the criteria for extraction?

    And you did not format column O in "Master Data" as "dd/mm/yy"

  15. #15
    Forum Contributor
    Join Date
    07-15-2015
    Location
    Kolkata
    MS-Off Ver
    2010 & 2013
    Posts
    303

    Re: Need help to update the table

    No.. Actually i want when i create new table under the existing table in Channel Tips sheet then in the "Report Deck" sheet automatically add/update those data below the table as per format.
    Attached Files Attached Files

  16. #16
    Forum Expert
    Join Date
    05-05-2015
    Location
    UK
    MS-Off Ver
    Microsoft Excel for Microsoft 365 MSO (Version 2402 Build 16.0.17328.20068) 64-bit
    Posts
    28,209

    Re: Need help to update the table

    I note you blank dates in some tips cells: is that deliberate ? should they be omitted from the "Report Deck"?

  17. #17
    Forum Contributor
    Join Date
    07-15-2015
    Location
    Kolkata
    MS-Off Ver
    2010 & 2013
    Posts
    303

    Re: Need help to update the table

    No... the blank dates cells is not that deliberate
    yes...they are omitted from the "Report Deck"

  18. #18
    Forum Expert
    Join Date
    05-05-2015
    Location
    UK
    MS-Off Ver
    Microsoft Excel for Microsoft 365 MSO (Version 2402 Build 16.0.17328.20068) 64-bit
    Posts
    28,209

    Re: Need help to update the table

    You might have to resort to VBA to get your "Report Deck" (or use "helper" columns).

  19. #19
    Forum Contributor
    Join Date
    07-15-2015
    Location
    Kolkata
    MS-Off Ver
    2010 & 2013
    Posts
    303

    Re: Need help to update the table

    I have no idea how to use "helper" columns

  20. #20
    Forum Expert
    Join Date
    05-05-2015
    Location
    UK
    MS-Off Ver
    Microsoft Excel for Microsoft 365 MSO (Version 2402 Build 16.0.17328.20068) 64-bit
    Posts
    28,209

    Re: Need help to update the table

    See the attached:

    formulas generally are of this form:

    =IFERROR(INDEX('Channel Tips'!$B$5:$B$1000,SMALL(IF(ISNUMBER('Channel Tips'!$B$5:$B$1000),ROW('Channel Tips'!$B$5:$B$1000)-ROW($B$5)+1,""),ROWS($B$5:B5))),"")

    Entered with Ctrl+Shift+Enter

    in column D (date retrieved from "Channel Data")

    =IFERROR(INDEX('Master Data'!$C$2:$C$20000,MATCH($B14,'Master Data'!$O$2:$O$20000,0)),"")

    % columns have been CUSTOM formatted as:

    0.00%;;;a

    which "hides" the zeros ( they are still there as data)

    Column R is a "helper" column which I hid by changing the font to white

    =IFERROR(INDEX('Channel Tips'!$A$5:$A$1000,SMALL(IF(ISNUMBER('Channel Tips'!$B$5:$B$1000),ROW('Channel Tips'!$B$5:$B$1000)-ROW($B$5)+1,""),ROWS($B$5:B5))),"")

    Columns E & F use column R


    in E


    =IFERROR(LEFT(R14,FIND(" ",R14)-1),"")

    in F

    =IFERROR(RIGHT(R14,LEN(R14)-FIND(" ",R14)-2),"")

    No formula for deriving column A (unless you supply criteria)
    Attached Files Attached Files

+ 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: 6
    Last Post: 02-23-2024, 02:11 PM
  2. auto update weekly table basis status update
    By JJJ_1812 in forum Excel General
    Replies: 3
    Last Post: 04-28-2016, 03:38 AM
  3. [SOLVED] code to update certain cells in a master table from a smaller table on another workeheet?
    By Rerock in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 11-20-2015, 04:52 PM
  4. Trying to update an access table from Excel based on unique ID. rst.Update not working
    By Newbie0924 in forum Excel Programming / VBA / Macros
    Replies: 0
    Last Post: 04-22-2015, 04:15 PM
  5. [SOLVED] Pivot table doesn't update from external csv while data table does
    By Nick_Berlin in forum Excel Charting & Pivots
    Replies: 9
    Last Post: 11-30-2014, 06:50 PM
  6. [SOLVED] VLookup Question - If i update the lookup table i do not want to update old data
    By mrabattoir in forum Excel Formulas & Functions
    Replies: 10
    Last Post: 04-28-2014, 03:40 AM
  7. Replies: 2
    Last Post: 06-16-2013, 02:58 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