Double Lookup in Numbers 3

Hi this one has had me stumped for a while so I hope there's the expertise out there!
I have two tables in different sheets; Lesson Sheet::Lesson Log Table and Pupil Summary Sheet::Pupil Progress Table.
I need to populate the summary sheet using the data from the Lesson Log Table, as per the image.
When a user selects a pupil, the Pupil Progress Table should update for the selected Pupil.
The formulas I need are for the cells circled blue and red. Any ideas?

Often when you end up with complicated formulas, index columns, and intermediate calculation tables, that's a sign maybe there's an easier way to do things (perhaps just filter the original data table, and live with the fact that the format is not as nice?). But here is one way that seems to do what you describe:
The index columns, which are later used by the INDEX MATCH lookup combination, are concatenation:
The formula in F2, copied down and right: =IF(LEN(C2)>0,C$1&$A2&C2&$B2,"")
The Calculations table:
C2, copied right: =IFERROR(INDEX(Lesson Log Table::$B,MATCH($A2&$A$1&C$1,Lesson Log Table::$F,-)),")
C3, copied right: =IFERROR(INDEX(Lesson Log Table::$B,MATCH($A3&$A$1&C$1,Lesson Log Table::$G,-)),")
C4, copied right: =IF(AND(Calculations::C4>Calculations::B4,Calculations::C4≠"Lesson Date"),Calculations::C4,"")
The Summary table:
C2 copied right and down: =IF(AND(Calculations::C2>Calculations::B2,Calculations::C2≠"Lesson Date"),Calculations::C2,"")
SG

Similar Messages

  • Weird error -43, when double-clicking a numbers document in finder

    Steps to repro:
    0) open a finder window at the location (e.g. ~/Desktop) you are going to save your numbers document.
    1) create a new numbers document.
    2) save the document to the directory (e.g. ~/Desktop) that you have already displaying open in the finder (<- very important)
    3) switch to the finder and double click the numbers document.
    4) I get a error -43 at that point.
    5) To get around the error you have to change the directory to one up and then back to where the numbers document is or switch the view mode (cmd-1, cmd-2, cmd-3) .
    Looks like the finder has problems with recently saved numbers documents.
    Even weirder:
    Press cmd-I on the numbers document in the finder after you just saved it. The numbers document disappears and so doeas the Information dialog. What the heck?
    Can anyone else repro this?

    Thanks for trying.
    I tried as well, now saving to the desktop, which is on a seperate volume.
    I had the problem saving to the work volume.
    It seems to have to do with permissions.
    I checked "Ignore ownership on this volume" and applied it to all subdirs.
    Seems to have solved the issue.

  • Double Lookups?

    I am struggling with something that I suspect is kindof basic. I would like to produce a report that is based on the need for multiple value lookups per line on a report. The data table contains:
    Index, partid, parentid…….
    The lookup contains:
    Part_index, part_name
    I would like my report to show
    Index, partid, part_name, parentid, parent_name.
    So I can show the part name instead of the id, for both parent and child. I cannot work out how to implement the “double lookup” of the names.
    My best guess is something like below.
    select
    "MYINDEX",
    "PART_ID",
    (select PART_NAME from NAME_LOOKUP where "NAME_LOOKUP"."PART_INDEX"="PARTS"."PART_ID") as "Part Name",
    "PARENT_ID",
    (select PART_NAME from NAME_LOOKUP where "NAME_LOOKUP"."PART_INDEX"="PARTS"."PARENT_ID") as "Parent Name"
    from "#OWNER#"."PARTS"
    Thanks in advance for any suggestions.
    J

    Hi,
    You can also do this with a self-join, which may be faster.
    select     "MYINDEX",
         "PART_ID",
         part_lookup.PART_NAME     AS "Part Name",
         "PARENT_ID",
         parent_lookup.PART_NAME     AS "Parent Name"
    from     "#OWNER#"."PARTS"
    JOIN     NAME_LOOKUP     part_lookup
    ON     part_lookup."PART_INDEX"     = "PARTS"."PART_ID"
    JOIN     NAME_LOOKUP     parent_lookup
    ON     parent_lookup."PART_INDEX"     = "PARTS"."PARENT_ID"
    ;This still has your original typo.
    If there are parts that do not have matches in the name_lookup table, then change the JOINs to LEFT OUTER JOINs.

  • Ok so I downloaded the iOS6 and now my iPod is reading my day and time and everything else to me I have to double tap my numbers to get in my password but my password won't even work can someone please tell me what's wrong

    So I downloaded the iOS6 on my iPod 4 and after 2 days it starts to read me everything I mean from my time and date to my password I have to double tap in my password In order for numbers to show up but when I type them it just says it's wrong please help what can I do to fix this problem with out having to reset EVERYTHING

    Triple Click your home button to turn off VoiceOver, or go to Settings > General > Accessibility and turn VoiceOver off.
    https://www.apple.com/accessibility/ios/voiceover/

  • Using the double underline in numbers

    I want to use the double underline in each cell along the bottom of the first row. This gives the effect that each column is separate. The lines do not go all the way through to the next cell. They also leave a little space on each side, in each cell. I used to do this in Excel. Does anyone know how to do this in Numbers?

    It was not clear whether you were describing what you wanted or describing what you were able to achieve. There is no double underline cell border in Numbers so I will assume you were using the double underline text format that Jerry described and it was not giving you the result you desired. But, because there is no double underline cell border in Numbers, you won't be able to get the effect you desire by using cell borders. The best I can suggest is to do one of the following:
    1) Use a thick single line border (my recommendation)
    2) Use a single line border and draw a line (insert/shape/line) across the table to simulate a double line border
    3) Forget using borders and draw two lines across your table to simulate the double line border.
    Message was edited by: Badunit

  • Double lookup possible in ISE 1.2 ?

    I want to do MAB on a certain SSID and authenticate and register devices used in the SSID.
    I managed to do that. If not "RegisteredDevice" then redirect to a portal where users can login with AD account and register there devices.
    After registration, the device MAC is added to "RegisteredDevices" and the endpoint is profiled.
    The ISE database contains an endpoint profile and this profile contains the propertie "BYODRegistration" = yes and "PortalUser" = the AD account xxx@ADdomain.
    Now i want to link the state of the AD account to the database. When the user account is locked/expired/disabled, the device should be refused.
    I wonder if it is possible to do the following:
    MAB authentication occurs -> lookup MAC address in Registered Devices (=OK), lookup "Portal User" of device -> Query AD for this user, get property "UserAccountControl". Based on this property, i can determine if account is still active. If yes -> allow access. If not -> refuse access, even if device is in "RegisteredDevices".
    When i troubleshoot however, i notice that -when using MAB- ISE is trying the MAC address as username against AD and gets returned: "Unknown User", of course. Is there a way to use the linked "PortalUser" as username against AD instead of MAC address ?
    [NOTE: i am fully aware that the proper way of doing this is through Client Provisioning and Certificates with a second SSID using 802.1x to authenticate certificates, but for now, i want to prevent pushing anything to the clients.......]

    Too bad.
    I wish Cisco had implemented a property like this: RegisteredDevices:PortalUser:IdentityAccessRestricted
    (i am assuming PortalUser is an AD account here). Maybe a PER can help.....

  • Keyboard intermitte​ntly typing double letters and numbers

    My Pavilion laptop intermittently types double letters.  I'm running windows 8.1 and the unit is about 6 weeks old.  It has done this eever since I got it.  I've look at other links to problems similar and checked the double key rate.  Also I've pluged in a generic keyboard and it appears not to do it.  
    Any specific suggestions?
    Thanks

    This is usually an easy problem to fix with HP laptops
    HP keyboards are bit different that what MS default settings expect. Usually this can be fixed in keyboard settings.  In Windows 7 click the orb, in windows 8 bring up the menu OR just tap the Windows key if its on a keyboard
    type in "keyboard" and click to keyboard [settings]
    You may find the default Repeat dalay is the lowest possible setting. This rate is too short for the sensitivity of HP keyboards as the key signals down before its fully pressed, and doesn't stop until its halfway up.  Very clean, accurate keypress, mistaken for a hold.
    Turn the delay up (Long) and this should stop it.
    (I tried for weeks to find this in BIOS, but as of Windows 7 its now controlled by the OS)

  • Why can't I lookup phone numbers using my iPod Touch?

    When I google "Pizza Hut" on my iPod Touch (using Safari), it finds the nearest Pizza Hut to my house, but instead of displaying Pizza Hut's phone number, it display an icon that says "Call".  When I press on that icon, nothing happens.  Can I get my iPod Touch to show me the phone number instead of prompting me to make a call?  I don't have the ability to make calls on my iPod Touch.

    Try using another browser like the free Chrome browser.
    Try:
    - Reset the iOS device. Nothing will be lost
    Reset iOS device: Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Going to Settings>Safari and Clear Cookies, Data and History

  • How do I convert an excel (2008) document to Numbers?  When I drag the Excel document onto the Numbers icon I get, "Import error.  The file format is invalid"

    How can I convert an Excel (2008) document to Numbers.  When I drag the Excel document onto the Numbers icon I get, "Import error.  The file format is invalid.

    That extension identifies the most current Excel file format, a format that can be opened by Numbers '09 (and by Numbers '08).
    A check with Numbers '09 shows it capable of opening .xlsx files when right-clicked (and Numbers chose as the application to open, when double-clicked (if Numbers has been set as the default application to open this type of file, or when dragged to the Numbers icon in the dock.
    I see two possibilities for Numbers inability to open it and the message you receive:
    1. The file is not actually an Excel file, and the sender has added the .xlsx extension to the filename manually.
    2. The file is an Excel file, but has somehow been corrupted.
    Have you tried opening the file with a different application? The open source Office suites, OpenOffice.org, LibreOffice and NeoOffice can also open .xlsx files. If they're unable to open this one, that would point toward the file itself being faulty. You can download these applications from their rspective websites, linked in the names above. All request a donation to support future development, but only Neo requires one to have been made recently, and that only for the current release (which won't be necessary to open .xlsx files).
    Regards,
    Barry

  • TextEdit is the default application for my Numbers documents

    Although I did not set it to be, TextEdit is the default application for my Numbers documents. It was not always this way, but it is now, and I can't seem to change the default application back to Numbers ('09). For example, when I double-click any .numbers document, I always get the following error message:
    The document “xxxxx.numbers” could not be opened. The file isn’t in the correct format. The file might be corrupted, truncated, or in an unexpected format.
    See: http://screencast.com/t/P5OSAJAq
    Therefore, whenever I want to open a.numbers document, I must drag it to the Numbers application icon or right-click and select “open with” and select Numbers from the list of applications. Although this works fine, it creates a couple of extra steps that I would prefer not to do
    My first inclination was to “Get info” and change the “open with”  back to Numbers for all .numbers documents.
    http://screencast.com/t/TMJwBmTOkHN
    http://screencast.com/t/LAnPsbeGdB
    However, selecting Numbers as the default application will not persist after clicking  “change all.” Rather, it reverts back to TextEdit. Tony, this is the only way I know how to select the default application for a document type.
    Is there another location where I can set/reset the default application?
    Thanks!

    I guess that there is at least one database used by the Operating System which is corrupted.
    Run a maintenance application : MAINTENANCE is a free very good one available thru :
    www.titanium.free.fr/
    and ask it to repair permissions,
    delete caches
    repair database Launch Services.
    Yvan KOENIG (VALLAURIS, France) jeudi 26 mai 2011 15:51:58
    iMac 21”5, i7, 2.8 GHz, 4 Gbytes, 1 Tbytes, mac OS X 10.6.7
    Please : Search for questions similar to your own before submitting them to the community
    To be the AW6 successor, iWork MUST integrate a TRUE DB, not a list organizer !

  • Password-protected Numbers spreadsheet only opens in computer that created it

    I recently password-protected a spreadsheet file on my iMac.  It works just fine when I open it on my iMac.  However, if I try to open that same file from my MacBook Air, it rejects the password.  It says that the password is incorrect.  When I try to open that same file on my iPhone 5s, I experience the same outcome.  Then I go right back to my iMac, open the exact same file and type in the same exact password, and it works just fine again!!  Any ideas?

    Hi tommo,
    Sounds like a corrupted plist (preferences) file.
    Quit Numbers, then do the following:
    The file indicated in the discussion linked in Ian's post is: com.apple.LaunchServices.plist
    You'll find it at:
    Macintosh HD > Users > yourusername > Library > Preferences > com.apple.LaunchServices.plist
    With versions of OS X after 10.6, the User Library is hidden. To get to your Library, start in Finder.
    Go to the Go menu, press and hold the option key, and select Library. Double click Preferences, then locate and select com.apple.LaunchServices.plist and drag that file to either the Desktop or the Trash.
    Then try double-clickig a .numbers file.
    Regards,
    Barry

  • Numbers shortcut opens in Preview at times

    I had seen some thing discussed previously, but not being a computer programming expert I could not seem to understand what I needed to do to fix the problem.
    Along with the dilling comments back about what was being asked I will advise the problem as follows.
    I use a Numbers file daily and created a short-cut to the desktop to make opening the file easier.
    The file is updated at least twice a day.
    Now previously there had not being a problem but following another fault to my Macbook Pro (Number 4) I this time needed a new harddrive and it seems the store screwed up the Operating system and it was not the same as the previous one I had (but that is anopther story).
    Since then, from time to time only, on several occassions when opening the shortcut on the desk top it opens with PREVIEW rather than NUMBERS.
    I have been able to change the software to open with by right clicking the shortcut and changing the setting to dermine what application it should open with, but this is annoying me as I should not need to.
    A previous question on this answered about deleting a file, but I could not find that and then tried using another option using the TERMINAL application, but when I copied what was on the suggestions it threw up an error which I think is due the need to change some details in what I copied but was not explained.
    Maybe the better option is for me to forget NUMBERS and purchasing EXCEL or a new Windows based Laptop becuase I have never had these problems with previous computers which I have been blighted with since swapping to Apple.
    Please advise what I can do to solve this.

    Hi tommo,
    Sounds like a corrupted plist (preferences) file.
    Quit Numbers, then do the following:
    The file indicated in the discussion linked in Ian's post is: com.apple.LaunchServices.plist
    You'll find it at:
    Macintosh HD > Users > yourusername > Library > Preferences > com.apple.LaunchServices.plist
    With versions of OS X after 10.6, the User Library is hidden. To get to your Library, start in Finder.
    Go to the Go menu, press and hold the option key, and select Library. Double click Preferences, then locate and select com.apple.LaunchServices.plist and drag that file to either the Desktop or the Trash.
    Then try double-clickig a .numbers file.
    Regards,
    Barry

  • Bought new iworks suite this summer - can't open numbers...has a faded question mark over the icon

    I bought new updated iworks suite this summer.  I've opened and used pages, but when I tried to open the icon on Numbers on my dock it will not open.  I only get options" and then can remove from dock.  there is a faded question mark over the numbers icon.  any help would be appreciated.  thanks, K

    Where are the applications stored on your HD ?
    Keynote.app, Numbers.app and Pages.app must be located
    in the folder Applications:iWork '09
    What you see in the Dock are symbolic links (kind of aliases) to the applications.
    It seems that for some reason the link between the Numbers symbolic link and the app is broken.
    (1) check the locations of the applications and if they aren't in the correct ones, repair this oddity.
    (2) If needed, uncheck the local menu item : Dock > Numbers > Options > Keep in the Dock
    then drag the icon to the Desktop. You will get the Poof icon saying that the symlink is destroyed.
    (3) Double click the Numbers.app icon to run the app.
    (4) Now you will be able to check the local menu item : Dock > Numbers > Options > Keep in the Dock
    so that the Numbers icon will remain in the dock when you quit the app.
    Yvan KOENIG (VALLAURIS, France) jeudi 25 août 2011 20:25:18
    iMac 21”5, i7, 2.8 GHz, 4 Gbytes, 1 Tbytes, mac OS X 10.6.8 and 10.7.0
    My iDisk is : <http://public.me.com/koenigyvan>
    Please : Search for questions similar to your own before submitting them to the community
    To be the AW6 successor, iWork MUST integrate a TRUE DB, not a list organizer !

  • Nokia 6230i Numbers lost when copying contacts!

    If anybody could help with the following problem it would be much appreciated:
    Having upgraded to a new Nokia mobile this week i decided to copy all my business contacts onto my pc and then back onto the new phone to retain the details. However as my PC would not recognise the USB connection I decided to manually copy them onto the SIM and back onto the new phone.
    There was already 89/90 numbers on the sim card so i decided to try and move 1 more (of the 254 on the phone) number onto the sim before putting them onto the new phone and repeating the process.
    When copying the numbers i chose the option to move the original numbers, so that i wasnt simply copying duplicates each time, and the phone said it had moved 1 of the 254 numbers onto the sim and that it was now full.
    Having moved the numbers from the SIM to the new phone I put the empty SIM card back into the 6230i to repeat the process, only to discover i had lost every single contact.
    Now i cant understand why the numbers have dissapeared...surely when moving the numbers to the sim card, if there was nowere for the numbers to go they wouldn't just be deleted would they? If so is there any way to retreive them?
    Help would be much much appreciated.

    Rather than move them you should have just copied them to the new phone memory. In your contacts you may find a double set of numbers in that case. One with a card sign next to it- thats means the contact number is in the memory card or sim. What you can do is put the card back in the new phone and copy the contacts to the sim card again ( not move) and then put the sim in the old phone and cope them to the phone memory. Hope this helps.

  • Double to Int Help Please

    Ok, so, now, I am about to take my final in Java on Thursday, and I thought I would try a little prog on my own. But, I am having trouble with the most basic stuff!
    Here is prog: http://www.willdesign4you.com/BindingCalc.java
    I have two issues:
    1. In this segment:
    if((numStrips % 10) > 0)
    output.append("\n(Number of Strips needed has been rounded up " +
         " to nearest 1.)");
    numStrips += 1;
    the method works fine unless the result is like 10.05 or in that range, then it isn't performing the function.
    2. In the rest of the methods, I need to be able to do math functions in decimals to get the needed accuracy. But, I cannot use * with a double, and I can't use int for double or float numbers. What am I doing wrong?
    What I need to do at the end to calculate yardage is say something like this:
    Yardage = numStrips * StripWidth
    Round up Yardage to the nearest 1/4" yard.
    Can anyone help me please?
    Thanks,
    Kimberly

    Sorry! Forgot!
    Maybe you should have a look at the BigDecimal and BigInteger classes. Using them you can perform a number of operations. The example I gave before do not perform any roundings. So, if d = 123.56 i will still be 123.
    Klint

Maybe you are looking for

  • Problems with iTune rentals?

    My rental download was interrupted by an error "There wa a problem downloading (movie). An unknown error occurred (-50).  Please check that the connect to the network is active and try again", but it is connected! Help please?

  • With FireFox 3.6.12 (ubuntu) Google Docs does not allow me to log in.

    Using FireFox 3.6.12 (ubuntu) I can not successfully access Google Docs. All my other Google accounts seem to work under FireFox, just not Google Docs. Google Docs currently works on other platforms like Chrome so this seems to be FireFox specific.

  • Translation error in Norwegian iTunes 9

    Is there any place I can report a translation error? The error is the word "Genre", which is translated with "sjangere". The right translation is with a captial S ("Sjangere"). In addition, "Album" is translated with "Albumer", which is also wrong. "

  • Error 1335: file corrupted Media.cab (CS3 Web Premium)

    ING Hello, I have Adobe Creative Suite 3 Web Premium and am having trouble reinstalling the applications. I had to remove them from my switch and when I reinstall the error 1335 appears corrupted file, in case Media.cab, I saw my media and is a risk

  • When db is bounced

    Hi: Is there a way I can check when the database 10g is bounced? I have only apps id and no privilige to check alert.log or from unix. Thank you for your help.