Help with new database?

I need to track several clubs, including officers, dues paid, etc.  Should I make one sheet with all clubs or each club on a sheet?

In the summary sheet I would list the names of the club sheets. I would create references to the club sheets by combining the names in the list with the known table and cell locations of the data I need to collect in the INDIRECT function.
Let's say I want to list all the annual club budgets in a summary table so I can sum them. If the annual budget for each club is presented in its Sheet in Cell B2 of a table called AnnualBudget, and my list of club sheet names is in column A of the summary sheet, I would write, perhaps in column B of the summary sheet,...
=INDIRECT(A & " :: AnnualBudget :: B2")
Fill Down to include all club sheets.
Jerry

Similar Messages

  • HT3209 Purchased DVD in US for Cdn viewing. Digital download will not work in Cda or US? please help with new Digital code that will work

    Purchased DVD in US for Cdn viewing. Digital download will not work in Cda or US? please help with new Digital code that will work

    You will need to contact the movie studio that produced the DVD and ask if they can issue you a new code valid for Canada. Apple cannot help you, and everyone here in these forums is just a fellow user.
    Regards.

  • Help with a database template - Desktop Product Inventory Template

    Hello Developers,
    I'm trying to develop a database to track purchase orders, supply levels, and supplies issued (with reports). I've been working with the MS Access template called "Desktop Product Inventory", but it has more functionality than I need (i.e. shipping,
    sales, invoicing). This template is almost exactly what I'm looking for.
    I've tried removing the fields I don't need, but I encounter errors everytime. Frustrated, I created a new database by studying and copying the format of the template. I have the general structure of the database setup with tabs, but I'm completly lost when
    it comes to formatting/coding the database. I'm not sure what needs to be done in order to recreate the functionality from the original template.   
    Unfortunately, I must admit that Access is my least favorite and used MS application.
    So, my questions are:
    1.) Does anyone know of an "effective" way to edit the Desktop Product Inventory template and maintain functionality?
    OR
    2.) Would someone mind taking a look at my database and giving me feedback? It's essentially just the layout  and what I want the database to show.
    Any and all help is appreciated, thanks for reading!

    The Microsoft template apps have a lot in them - which is why they are particularly difficult to modify by the novice - so don't feel bad. 
    A database that does  Inventory, shipping, sales, invoicing - is going to be complicated inherently, and is really a matter of development familiarity and experience.

  • PHP Help with inherited database site

    Hope someone can help with this, although I might be a bit vague. (But will be happy to post any code that might help.)
    Basically I do a few sites for a company, and everything is coming together nicely moving everything to a new reseller hosting account where everything can site. I'm basically doing some redesign and new database work for them.
    But there's one site I'm basically just trying to move over, that already has a database. I've copied the site onto the new hosting, copied the database across and created a new connection file.
    I must admit the code is all a bit more PHPO heavy than what I'm used to working with. so have run into a problem trying to figure out what data is not displaying due to queries failing. As far as I can tell the connection is working, and the queries have not changed.
    Anyway - the main page is here, where you should be able to click on the furniture images to go to the product page :
    http://www.miradatravelmedia.com/lusty/public_html/index.php
    But when you click through the product page query is failing :
    http://www.miradatravelmedia.com/lusty/public_html/products.php?category=1
    The products page is mostly PHP and looks like this :
    [PHP]<?php
    if (!@empty($_REQUEST["img"])) {
      require_once("../includes/hft_image.php");
      $img = new hft_image($_REQUEST["img"]);
      $img->resize(200,180,"-");
      $img->output_resized("");
      exit;
    $page = "products";
    include("../includes/header.php");
    include("../includes/db_open.php");
    $sql = "SELECT `id`, `name` FROM `categories` WHERE `id` = '" . $_REQUEST["category"] . "'";
    $result = mysql_query($sql) or die("Query failed : $sql at line " . __line__);
    $category = mysql_fetch_assoc($result);
    ?>
    <div id="trail"><a href="shop.php">Shop</a> &gt; Lloyd Loom <?php echo $category["name"]?></div>
      <div class="clear" id="divider1"><img src="images/spacer.gif" alt="<?php echo keyword()?>" /></div>
    <h1>Lloyd Loom <?php echo $category["name"]?></h1>
    <?php
    $sql =
      "SELECT * " .
      "FROM `products` " .
      "WHERE `category` = '" . $_REQUEST["category"] . "' " .
      "ORDER BY `order`";
    $result = mysql_query($sql) or die("Query failed : $sql at line " . __line__);
    if (mysql_num_rows($result) == 0) {
    ?>
    <p>Coming soon ...</p>
    <?php
    } else {
      $n = 0;
      while ($row = mysql_fetch_assoc($result)) {
        $n++;
    ?>
    <a href="product.php?id=<?php echo $row["id"]?>" class="product"<?php if ($n == mysql_num_rows($result)) echo " id=\"last\""?>>
    <?php
        if ($file = glob("images/products/" . $row["id"] . "_*.*")) {
    ?>
    <img src="img.php?img=<?php echo $file[0]?>&width=200&height=180" alt="<?php echo $row["code"]?>" />
    <?php
        } else {
    ?>
    <div id="no_image">No image found</div>
    <?php
    ?>
    <?php echo $row["code"]?>
    </a>
    <?php
        if (is_int($n / 4)) {
    ?>
    <div class="clear"><img src="images/spacer.gif" alt="<?php echo keyword()?>" /></div>
    <?php
    ?>
      <div class="clear" id="divider2"><img src="images/spacer.gif" alt="<?php echo keyword()?>" /></div>
    <?php
    include("../includes/footer.php");
    ?>[/PHP]
    If anyone could shed any light on what's going wrong still, that would be much appreciated.
    Thanks.

    Iain71 wrote:
    You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''categories' WHERE 'id' = '1'' at line 1
    So it does look a bit odd with the quotes.
    Column names in a SQL query must not be in quotes. The MySQL error message tells you that the SQL syntax error is "near" the section it refers to. In other words, the error is just before that part of the query. Normally, you need to display the whole query to spot the error, but it's obvious in this particular case, because there's a quotation mark after categories, indicating that you've put the column name in quotes. Anyway, you've solved that problem by using the version I suggested.
    I still haven't managed to establish where this vat.php file is - is there any explanation for it not being visible on the original hosting server where the site is working? And could it have anything to do with the query not working?
    No, it has nothing to do with the query not working, and the reason you can't see it on the live site is because there's no error. The error message on your test site tells you exactly where to look for the problem. The file vat.php is included by header.php on line 19. Either vat.php isn't on your server, or the code on line 19 of header.php is pointing to the wrong location.

  • Help with new hard drive and data recovery

    I have a macbook pro 13" from early 2011...last week the hard drive crashed and after a few hours at the genius bar had to got  tekserv to recover my data and get a new hard drive and update to 8GB of Ram.  When I got my macbook back I was given an external hard drive that had everything from my old hard drive saved by the users on the old hard drive.  I was hoping I could just transfer the user over to the new hard drive but since I had to restart the computer as a new computer I am not able to just reassign my old profile as the new one on this laptop.  Maybe I've done something wrong but at this point I transferred all my documents over, moved my music and pictures over but I have a few things I can't figure out that I'm hoping someone can help with.
    1. Do emails that were in my mail program from both gmail and my verizon.net program get saved somewhere or do I have to just assume those were lost?
    2. my iTunes library is now there but none of my playlists are there.  Should those have been saved somewhere in my iTunes folder that I should see them?  I'm concerned about syncing my iPhone or iPads to iTunes without those there.
    thanks for the help.

    Here's the spec page on your PB.  http://www.everymac.com/systems/apple/powerbook_g4/stats/powerbook_g4_1.25_15.ht ml  It came with OS 10.2.7 installed. The max OS is Leopard 10.5.x
    Tiger install DVDs are in short supply. Tiger is no longer available at the Apple Store but may be available for $129 by calling Apple Phone Sales @ 1-800-MY-APPLE (1-800-692-7753). For other sources, do a Google search for MA453Z/A (10.4.6), MA190Z/A (10.4.3) and M9639Z/A (10.4). Also look on eBay. Be sure & buy a retail version (black with silver X) and not a model specific version (gray) (See http://discussions.apple.com/thread.jspa?threadID=1976068 Can I use another Mac's system restore disc on my Mac?.
    Also check these web stores: http://www.lacomputercompany.com/cgi-bin/rpcart/index.cgi?command=dispitem&type= sku&sku=19521  http://www.allmac.com/shop/index.php?cPath=5_10003
    After you install the base 10.4.x, update to the final Tiger version 10.4.11. Here's the link for the 10.4.11 combo update http://support.apple.com/kb/TA24901?viewlocale=en_US
    Look at this link Mac OS X v10.4 Tiger Installing Software Support Page
    http://www.apple.com/support/tiger/install/
    You can also download the Tiger Installation and Setup Guide
    http://manuals.info.apple.com/en/Tiger_Install_Setup_Guide.pdf
     Cheers, Tom

  • Can any one help with new iOS 7.1 update?

    Hello,
    I have recently downloaded the iOS 7.1 update and it has being causing problems with the iPhone 4s. The problems are as follows;
    No Wi-Fi connection all, and in full range of a connection (If and when I connect its for 10 seconds and gone again)
    Battery Life depleting quickly
    iPhone freezes constantly
    iPhone getting extremely hot when not in use.
    Is there anything that I can do that can help with this or will I have to wait for the next iOS update?
    Kieran

    If I restore as new without the backup & everything seems to be fine, I assume I would then have to restore it from my latest backup in iTunes in order to get all (or at least most) of my data back.
    From what I have read, it looks like at least the music I have on my iPhone 4S that I put there from a CD I own would not be in my backup.  That is not a major problem, since it is only 1 CD.
    It also seems like the iTunes backup is more complete than the iCloud backup (I do have both).
    So, I should probably be restoring from that backup.
    Is there anything else that is not backed up in an iTunes backup that I should consider before I do that?
    When I backup in iTunes (or even in iCloud), some items not backed up?
    Wouldn't I then have to re-install those items that are not in my backups?
    I have a Medical app from my local ambulance operator where I have taken a ton of time to input all of my medical information going back numerous years.  I just got tired of some medical person constantly asking me for information one never really makes a point of remembering.  Now, I have all of that information in my iPhone 4S.
    There is no way I would want to reinstall that app & re-input all of that information again.
    I also put a lot of "lists" in the Notes area on my iPhone 4S.
    I understand that is also something that is not backed up.
    These are just 2 examples.
    I also have other items that I am under the impression also are not backed up.
    Losing any of that information would be a huge burden to recover.
    I am willing to take a chance with some items that are not backed up to either iTunes nor iCloud.
    But, knowlingly doing something that may lose that information is not something I am willing to do.
    OR, am I just not understanding what is and is not backed up in iTunes or iCloud & what I could potentially lose?

  • Need help with new itouch

    Please bare with me, while I 'try' to explain.
    I have my itunes account linked to my iphone and macbook. I have bought my daughter an itouch for Xmas. Now I have set up a seperate itunes account for her on my other Windows laptop. So she is able to purchase apps without them going and clogging up my itunes... NOW this is the bit i need help with...
    How can i transfer any music i have on my itunes to her itunes? and vice versa?
    Thanks in advance

    Right, I have now gone down the line of setting up a new user on my macbook, her own ID and then with the help of Mr google, I followed the steps of sharing my music, by moving my itunes media folder to a shared folder.
    Now i got my music on her itunes libary but when i did a test download of an app, it wont show in the library. I have even done the 'transfer purchases'. and its still not showing. I am slowing loosing the will to live with it! I really need help.

  • Search help with new selection within if more than 500 entries

    Dear all,
    I created a new search help and this works fine ... If I compare my search help with a default search help from SAP,  I have 1 small feature that not seems to work ... With the default one, it is possible to make a new selection within the search help by clicking on the arrow down :
    If I look at my search help, I don't have the possibility to make a new selection :
    Does anyone how this can be done ?
    Thanks in advance !
    Greetz,
    Kurt.

    HI,
    Here are the general steps to get you started.
    1. Identify the search help being used (on the ship-to-party field, F1 then Tech Info). I believe you want the collective search help SD_DEBI.
    2. Create your own search help with the fields you want to use with SE11, like 'ZDEBI' as an example.
    3. Append 'ZDEBI' to SD_DEBI. (Goto->Append Search Help).
    4. Clean things up by "Hiding" the old search help. In the 'Included Search Help' tab of the collective search help SD_DEBI, there is a check box that you can tick to hide included search helps.

  • Help With New Hard Drive Installation Recovery

    I had a bad hard drive crash. I installed a new one and got the bios to boot from the cd drive, with the windows 7
    orginal install cd in the drive.  It recognized Drive 0, I clicked new in the options. It created ONE System partition.
    Installed windows 7 seemingly fine. Inserted the application and driver recovery disk and installed those. It all seemed fine. This morning I turned it on and it the hard drive error message (3F0) please install an operating system. I shut it down and restarted, it seemed normal.  I installed a few programs, shut it down again. Returned to it later, started it up again and it took me to the diagnostic screen telling me SMART Check - Not Installed and Short DST - Not Installed..  Can someone tell me how to delete that partition and I can format the drive in a usb sata enclosure and start over again.
    Please tell me the correct proceedure to get this laptop back up and running to a factory state. I have original Windows7 and Windows8  and Application and Driver disks for both OS'es..  I want to stay with the Windows7 installation.
    Thanks for any help with this problem. I have no idea where I went wrong !
    This question was solved.
    View Solution.

    It is not impossible that the new hard drive is bad, have seen it before. It is also possible that the sata controller on motherboard is bad-but I would look at that possibilty last. Can you get an exchange on the new hdd?
    ******Clicking the Thumbs-Up button is a way to say -Thanks!.******
    **Click Accept as Solution on a Reply that solves your issue to help others**

  • AS 2 help with new window dimensions

    Hello Everyone,
    I need a little help with AS2 when it comes to doing anything
    other than "drag n drop" scripting. What I'd like to do is open a
    new browser window with specific dimensions but I can't figure it
    out.
    I'm currently opening a new browser window with the following
    AS2
    on (release) {
    stopAllSounds();
    getURL("
    http://scfvideo.com/video_samples/ryan_cat.html",
    "_blank");
    Can someone help me open this window so it's in a 770 pixel
    wide browser window?
    Thank for your help!
    Todd
    High School Web Design Teacher
    www.mrbenrud.com

    http://kb.adobe.com/selfservice/viewContent.do?externalId=tn_14192&sliceId=1

  • Connection problem with new database

    Hi
    Installed new database on my windows machine successfully
    while connectting as sys user error
    ORA-12500:TNS: listner failed to start dedicated server process
    wlile connecting toad and sqlplus

    Please read the error again "listner failed to start dedicated server process". Means what, listner listened your request to connect, it tried to hand-off the connect request but due to resources problem (lack of memory) it is not possible to start server process; i.e. presumably the server is very busy at that time. If you are not able to resolve the issue, please check the unwanted services and stop them in strat-run-services.msc.
    More information can be found at below link too:
    Re: ORA-12500
    HTH
    Girish Sharma

  • Need help with new Time Capsule/Airport express setup!

    I just hooked up a 500g time capsule to replace an airport extreme, and now my airport utility on my MacbookPro Retina no longer recognizes the airport expresses I had on my network for airplay purposes.  Can anyone help with this issue?

    Instead of a switch you need a wireless router, because your modem will only assign one public ip address to the switch and that ip address will be forwarded to any one computer at a given time...You should replace the switch with a wireless router and it should resolve your concern...

  • Help with local database

    hye...
    i have some problem with mySQLite database.i have this code
    for my application (in attachment).when you clik the load button,it
    will load a text file on the desktop directory.when you click the
    filter function it will split the text file according to an array
    that i have specified.
    the text file consist of some data like this:66.249.71.54 - -
    [10/Oct/2008:03:31:01 +0800] "GET
    /mod.php?_call=Kalendar&day=2014-05-09 HTTP/1.1" 200
    66.249.71.54 - - [10/Oct/2008:03:31:57 +0800] "GET
    /KERIAN%20ENG/Towns/Main_Town.htm HTTP/1.0" 404
    i have created a database on my desktop using one tool that i
    have downloaded and point to that database.
    the probllem now is,i want to store the "200" only strings
    into the database.strings other than "200" will be not stored in
    the database.can u show me how to do this..
    i hope you can understand what i want...
    thanks for your time..

    ty for your reply
    my boss was dead set to make it work so we get down to it.. he says that this particular conf was now soppurted by oracle (dont think so), but well we modified the realese and now we have the vm server in the box with the vm manager and cam working..
    now i what to discover the server and throws this error
    OVMAPI_4010E Attempt to send command: discover_hardware to server: ovm1.grtn.cfe.gob.mx failed. OVMAPI_4004E Sync command failed on server: 10.0.2.210. Command: discover_hardware, Server error: org.apache.xmlrpc.XmlRpcException: <type 'exceptions.Exception'>:ERROR 0 @ 730 parse_multipath_conf_file() ERROR: /etc/multipath.conf could not be read !?! ERROR 1 @ 372 fill_blkDevInfo_scsi_device() blkdev 'dm-0' bad devLink [../devices/virtual] !?! Runtime errors occured [2] [Tue Jan 20 05:58:32 CST 2015] [Tue Jan 20 05:58:32 CST 2015]
    this is in the vm manager 3.3.1 console
    try to check the etc/multipath.conf and its not there and i have no idea why..

  • Need help with new 8310

    Just upgraded from earlier blackberry and have two problems I need help with!
    First, in rearranging the icons my browser icon disappeared and I can't get it back even when I use the show all function.  Any ideas?
    Second, unlike my earlier blackberry, messages I sent from my office laptop are not appearing in my messages.  What setting do I need to tweak?  I like my blackberry to show all the messages sent from or received by the laptop.
    Thanks.
    Lauren

    My BB setting was to not hide sent messages, but the problem I think has to do with the settings on syncing with my computer.  Messages I send from the blackberry show up as sent - but I want the BB to match completely with the email on my computer - show every email received and every email sent.  That was how the old BB was set up.  Any ideas on what else to tweak either on the desktop or the BB?  Thanks for your help.

  • Help with new error code (-1)!

    Hi I am trying to update my iphone 4 to ios5. When it comes to the last stage, it shows this error of -1. I am unable to find any info related to this error code. Any help with this is highly appreciated! Many Thanks. Now the phone is unusable. Previously it showed several errors including 1600 series and they are all resolved. This is the last hudrle. Please Help!
    Thanks

    Like many I experienced some issues when updating to iOS 5 (on launch day). I finally gave up on the Update option and chose the Restore option.
    iOS 5 downloaded and installed without issue. I restored from Back Up and everything was in place. No errors.
    If you are updating, try using Restore instead.

Maybe you are looking for

  • SharePoint 2013 List View with query string filter stops working after editing view from browser

    I have created one list definition in which I have added one list view which will filter data from query string paramater So when I am creating list from my list definition, view with query string filter is working fine. But when I am modifying view

  • Action date field in follow up action

    If you specify a follow-up action in a contract, you must enter a date or a date rule in the Action date field. question where is the Action date field i search for it in sales document contract and i don't found in contract data please help me

  • Setup for Controlling Articulations (or Patches) as an Interface

    Hi, Here is a new set-up I've created (though, I'm sure others have done this or similar things before). The objectives of this set-up are to provide a way to deal with situations where I have limited processing power and limited computer memory duri

  • Consignment MM-SD

    Hi all, I have 2 companies, the company A send material in consignment to company B and this sales it. The company B settles the goods issues (trx MRKO) and this process creates a credit memo to company A. The company A finishes with the billing that

  • Itunes lost files

    I have imported some audiobooks from my computer into itunes. Normally they show up in music. and i need to select autiobook. However I imported a bunch, and they are no where to be found. music, audiobooks, movies, etc... And if I try reimporting th