Summary with associated fields - How would I do this?

Post Author: mikebres
CA Forum: General
I have a group that summarizes the Maximum Date/Time from several operations for that day, showing the last DT within that group.  Essentially showing the time the plant finished the days run for each operation group.  I would like to be able to also show the Operation Number and the Machine Number that is associated with that maximum DT on the Summary line next to the Maximum DT.  How would I do that?  I'm using v8.5.
ThanksMike

Post Author: mikebres
CA Forum: General
Click!  The light finally came on!  Now that I have the data I need... No let me start a new thread.
Anyway, thank you both.
AFCS Video
1/29/08  6:53
670
8
AFCS015
1/29/08  9:53
150
12
DPS
1/29/08  6:28
919
9
OGP
1/29/08  2:44
891
52
OGS
1/29/08  10:09
262
49
1/28/2008
AFCS Video
1/29/08  23:24
660
1
AFCS015
1/29/08  22:46
150
9
DPS
1/30/08  6:52
919
40
OGP
1/30/08  1:42
281
45
OGS
1/30/08  6:15
262
49
1/29/2008

Similar Messages

  • I share my iTunes with my family's iPods.  We all buy music on our iPod's and would like to transfer the purchases to the iTunes library.  How would we do this?

    I share my iTunes with my family's iPod's.  We all buy music seperately on our own iPod and would like to transfer the music to our iTunes library, how would we do this?

    Oh jeez, that was simple. Thanks!

  • If i want to contact apple with an idea i have for a new feature for the iphone how would i do this?

    if i want to contact apple with an idea i have for a new feature for the iphone how would i do this?

    A quick google search would have revealed the answer.
    http://www.apple.com/feedback/iphone.html

  • How would I express this correctly

    How would I express this correctly?
    elseif ($row_rs['loggedinip'] != $_SERVER['REMOTE_ADDR'] AND
    now("Y-m-d H:i:s") < $row_rs['lastlogin']+120 minutes) {
    die(header("Location:
    http://domain.com/login.php"));
    else {...

    .oO(jsteinmann)
    >Its not on a unix system
    Doesn't matter. Unix timestamps also work on Windows, they
    are just one
    way to store a time code withing the range of (roughly)
    1902-2038.
    >mysql data is in a datetime format
    You could also let MySQL already return the date as a Unix
    timestamp or
    even do the entire calculation in MySQL, as already
    suggested. You could
    let MySQL return both: the normal 'lastlogin' field and
    another one with
    'lastlogin'+120 minutes or whatever. Or do the entire date
    test in SQL
    and just return a boolean value if the last login was more
    than 120
    minutes ago or not ... there are several different ways.
    Micha

  • Hello apple guys, i can't open app store, reminders, contacts, mail(crash), maps, Image Capture, and other apps that comes with Mavericks OS, how i can solve this problem?

    hello apple guys, after installing OS X Mavericks, i can't open app store, reminders, contacts, mail(crash), maps, Image Capture, and other apps that comes with Mavericks OS, how i can solve this problem?

    So is this the way Apple works now? Not solving customers problems? I'm sure so many users have had this problem. I've had, and I reinstalled Mavericks 3 times. Works fine for some days and then several Apple Apps stop working. Is that a way to force us ti update to Yosemite? (I don't want to) and then pay to update some third party programs (i.e. Pro Tools). Also, there are so many 15" MacBooks Pro with graphic problems and of course the guys at the Apple Service Centers always say: "It's the logic board, you can have it replaced, but it's so expensive I would recommend a new Mac".  I really, really miss Steve Jobs!

  • HT1349 My Macbook Pro was stolen and I need the serial number. How would I find this? I need it for the police report so if I could get answers soon that would be great, thanks :)

    How would I find this? I need it for the police report so if I could get answers soon that would be great, thanks

    Lanlani wrote:
    ... It there any other solution ?
    Consider using this site: http://www.stolenlostfound.org/
    This is Apple's official word on the subject:
    Reporting a lost or stolen Apple product
    If you have lost or found an Apple product, please contact your local law enforcement agency to report it. Although Apple does not have a process to track or flag lost or stolen product, you can use My Support Profile to find a list of serial numbers for items purchased or registered with your Apple ID.

  • How would I do this?

    I have to say I'm completely lost. I need to make two files - WordFrequencyAnalyzer.java that has all the functions and TestWordFrequencyAnalyzer.java that should be a GUI that calls the first one. I know how to make GUIs without a problem but its these functions that baffle me.
    This is what I need to do - WordFrequencyAnalyzer.java needs to have a constructor that opens us a text file and reads it and saves what is needed for analysis. This is what I have:
    public void WordFrequencyAnalyzer(String filename) throws IOException
         {//Constructor.  Uses file name to open file reads it, saving what is needed, then closes the file.
               BufferedReader br = new BufferedReader(new InputStreamReader(new FileInputStream(new File(filename))));
         }Now these are killing me:
    public int frequency(String word)
    *****This needs to be able to check the number of times the particular word occurs in the file. How would I do this? Please help give me a clue. The next few seem to tie in together if I could figure out how to do one of them.
    public String mostFrequentWord()
    //The word that occurs most often in the file
    public String[] wordsOccurringAtLeast(int minimumNumberOfTimes)
    //An array, alphabetized, of all the words occurring at least the given minimum number of times...I'd figure I'd use a search and compare method here.
    public int numberOfWords()
    //The number of words (counted once each) in the file
    public String toString()
    //Returns a string which, when printed, will show two columns, with a word on each line on the left and its frequency on the right. The result must be alphabetized.
    Who could give me some pointers. I don't want the code done for me because I need to learn too. Do I need to put the data from the text file into a Collection interface in the java.util package or should I use something else?? And how would I go about doing something like that?
    Thank you very much,
    Henry

    I modified the code above for the Hashtable to a Collection and came up with this and emailed him:
         What about this:
         Collection words = new Collection();
         String line;
         while ((line = br.readLine()) != null)
         StringTokenizer st = new StringTokenizer(line);
         while (st.hasNext())
         { words.add(st.next().toString());
         Storing in a Collection is what you want right? I don't want to do something that you don't approve of. I remember the time I used a Hashtable and you didn't like it. ...
    This is his response:
    As for your suggested solution: A collection is a good idea, but Collection is
    an interface, so you can't do anything like
    Collection words = new Collection();
    You must figure out what kind of collection to use. And here's a hint about
    something else:
    If every time you see a word like "the" you store it in the collection, you'll
    have two problems: the word will be stored over and over, which is inefficient
    use of space, and your program will have to do a lot of repetitive work to
    implement the methods, which is inefficient use of time.
    I new he wanted a Collection. I'm starting to know him a little better now I guess, which still doesn't help as much. If anyone has any ideas please post - this is all new to me. Does anyone know the best kind of Collection to use as he put it?
    Thanks,
    Henry

  • I need to change my apple id in my ipod (it was an old email address).  How would you do this?

    I need to change my apple ID in my ipod touch (it was an old email address).  I have changed to setting in itunes.  How would you do this? - not sure what my OS is.

    Go to Settings>Store (or Settings>iTunes and App Stores for iOS 6) and sign out and sign in with the other/updated account.

  • Please help!!!!!! i filled out a job application using adobe reader but i cannot send the file back via email because the file is protected with a lock. how do i unlock this file to send it?!!!!!!!!!

    please help!!!!!! i filled out a job application using adobe reader but i cannot send the file back via email because the file is protected with a lock. how do i unlock this file to send it?!!!!!!!!!

    Hi kevinv1987,
    It doesn't sound like the PDF was password protected (or Adobe Reader would prompt you for a password). Instead, it sounds like that file may be marked locked by your operating system. Are you on Mac OS or Windows? In either case, here are instructions for removing the lock icon from the file:
    Remove the Lock Icon from a Folder in Windows 7 (check Microsoft's website if you have a different version of Windows)
    On Mac OS, select the file in the Finder, and choose File > Get Info. Then, just deselect the Lock checkbox.
    Please let us know how it goes.
    Best,
    Sara

  • Advice - how would you do this?

    I have a compound path (an inner rectangle and an outer one) in an opacity mask. I have to apply an b/w gradient from the outer to the inner ractangle.
    I can only find a feature to add circular an linear gradients!
    How would you do this?

    haemse,
    Transitions like this are made with Blends; Object>Blend>Options to ensure the options you want, then Object>Blend>Make.
    In this case you may:
    1) Object>Compound Path>Release;
    2) For each rectangle, set Stroke to the Fill Color and set Fill to None;
    3) Select both and Object>Blend>Make (keep it Smooth).
    In other words replace the Compound Path with a Blend.

  • HT204053 i restarted my apple id email because i deleted my old email.. but now my phone won't backup to icloud because it's asking for the password to the old email. How would i fix this?

    i restarted my apple id email because i deleted my old email.. but now my phone won't backup to icloud because it's asking for the password to the old email. How would i fix this?

    If your phone is signed into your old iCloud ID ("email"), you need to delete the existing account then sign back in with your new ID.  To do this go to Settings>iCloud, tap Delete Account, provide the password for the old ID when prompted to turn off Find My iPhone, then sign back in with the ID you wish to use.  If you don't know the password for your old ID, or if it isn't accepted, go to https://appleid.apple.com, click Manage my Apple ID and sign in with your current iCloud ID.  Click edit next to the primary email account, change it back to your old email address and save the change.  Then edit the name of the account to change it back to your old email address.  You can now use your current password to turn off Find My iPhone on your device, even though it prompts you for the password for your old account ID. Then save any photo stream photos that you wish to keep to your camera roll.  When finished go to Settings>iCloud, tap Delete Account and choose Delete from My iDevice when prompted (your iCloud data will still be in iCloud).  Next, go back to https://appleid.apple.com and change your primary email address and iCloud ID name back to the way it was.  Now you can go to Settings>iCloud and sign in with your current iCloud ID and password.

  • How Would You Do This Effect in Logic?

    I'm trying to figure out how I would best achieve the vocal effect in Kesha's song "BLOW."
    http://www.youtube.com/watch?v=_USZ2D0GTxo
    In the chorus, there is the catchy "blow....oh...oh..oh..oh..oh..oh" section. Someone suggested she sings the entire line, which gets interrupted by a gate, which could be triggered by a keyboard, so everytime you hit a note, it stops the steady note she's singing. If you guys think that's what they are doing, how would I set this up? This kind of thing goes on in modern pop all the time and I have to find a way to do this effect before it drives me crazy;)
    I get hired to do karaoke tracks all the time and whenever there is one these to day it is always a pain due to my being more a traditional guitar, keyboard "organic" producer than synth/FX guy.
    Thanks for any help.
    Tom

    Thanks David.
    The plug ins you mention don't really help though, because they can only be set to preset patterns. This is a specific pattern of course. I know The Bee Gees did this in Robin Gibb song from the 80s called "Boys Do Fall In Love" ....there was a section that went "B......B...B...Boys fall in love." They did it by sampling the phrase into the Emulator back then and playing the phrase. I guess I could do that with EXS.
    The best solution would be if there was a way to make a gate respond to a midi track, so I could play the rhythm on the midi track, quantize it, then use that as a trigger to the gate...gonna try that...Guess I could also record the midi track as a sidestick or something and use that audio track to trigger the gate....hmmmm.
    Tom

  • My phone has been asked to be plugged into itunes for the past hour or so, and it has been plugged in the whole time... i have tried holding in both buttons too turn it on and nothing is happening... whats wrong with it and how do i fix this :(?

    My phone has been asked to be plugged into itunes for the past hour or so, and it has been plugged in the whole time... i have tried holding in both buttons too turn it on and nothing is happening... whats wrong with it and how do i fix this :(?

    Does iTunes see your phone?
    Do you have a PC or a Mac?
    ~Lyssa

  • Regarding iMessage, when i want to send text to a person in my contacts app, i've been getting a message saying the number has not been registered with iMessage.  How can one fix this problem?

    Regarding iMessage, when i want to send text to a person in my contacts app, i've been getting a message saying the number has not been registered with iMessage.  How can one fix this problem?  It works on the iPhone.

    It takes two to tango, maybe it's your recipient that has weak Internet/Cellular connections.

  • I need to do a clean install with Lion. How do I do this. I can't find any doc. to tell me the procedure.

    I need to do a clean install with Lion. How do I do this. I can't find any doc. to tell me the procedure.

    Follow the instructions at the link I posted 
    have a lot of old stuff transferred from Mac to Mac to Mac that is slowing down everything
    If that included Power PC apps, read here >  Lion upgrade questions and answers:  Apple Support Communities

Maybe you are looking for

  • Brand new iMAC keeps hanging

    Hi All I received my brand new iMAC today - having never had a MAC anything before - decided to switch as fed up of hanging, viruses etc on PCs and also need more multimedia options. Have set it all up it keeps hanging - for no reason i click on forc

  • Hyperlink not Responded in Acrobat Reader 9.0

    Hi all, I have installed Adobe Reader 9.0 recently. But in hyperlink that points to another PDF document has not been responded. No error message has not been given even. It worked with Acrobat Reader 7.0 also. In Acrobat Reader 7.0 if you click the

  • Cannot display date in menu bar

    For some reason, my computer (in OS 10.3.9) will only display the date & time in the floating window (by checking the box to display date & time and selecting the button to display in window thru system preferences), but won't display the date & time

  • How can I filter messages that do NOT contain a specific word in the subject?

    I want to do the opposite of what filtering normally does. I want to filter out messages that do not contain a word or a string. For example, I want to display emails that do not contain the word "meeting" in the subject. Is this possible? If so, how

  • Are there any known issues with downloadin​g printer drivers?

    Hi there. New laptop so I'm trying to download the drivers for our office printer. Using the http://www8.hp.com/uk/en/drivers.html page but when I click on the link for a CM2320nf MFP, all I ever get is a message saying that the page is unavailable.