Using LOOKUPVALUE--need urgent help please

Hello,
what im trying to do is grab the first date when someone bought a product. I have 2 tables. 1 where my products are registered with product ID and the other table shows when the item was bought. What im trying to do is show in the first table only the date
where item was first bought. Im using lookupvalue and gives me an error because I have repeated itemsID  in the dates list.
How could I only grab the first date??
Thank you

Power Pivot Pro and
"The Italians" have been the richest sources for me.
What that measure does is find the smallest value in your fact table - MIN( ... ), but this function is evaluated in a special context.
CALCULATE() allows us to change the context that we evaluate a function in. What we're doing is changing the context so that we evaluate MIN() only on the rows in the table specified by FILTER().
FILTER() takes a table, and then iterates row-by-row over that table, performing the logical test that we specify. It returns only those rows that have a true value for that test. The test is checking that the [itemsID] on the current row (current row in
our iteration using FILTER()) is equal to the [itemsID] from the row of the product dimension that this whole expression (CALCULATE( MIN(...), FILTER(...))) is being evaluated for. EARLIER() says, "I know my current row refers to the current row in my
iteration through FILTER(), but there is also a current row in the table where this calculated column is defined - give me the latter meaning of current row."

Similar Messages

  • Need Urgent help please? I need to restore from a previous iphone backup.

    Oops, I admit it - I messed up but need help please?? I received a replacement iphone today. My broken iphone OS and my itunes had the latest software updates and I did a full backup before going to the store to get the rerplacement. However, when I got home with the replacement iphone and plugged it in, it asked if I wanted to update the OS on it. I made the mistake of saying yes. It then made a backup of the empty factory settings from the new replacement and restored from that rahter than the backup I made before going to the store. Yes I know I should have said no and just did the restore which would have resotred my previous backup that I made before going to the store. Then after everything would be allright I could have told it to update the OS.
    You can slap my in the face or I will do it myslef for making such a stupid mistake. All ready did the "I should have had a V" thing to my forehead.
    After seeing the restore was fromthe factory settings rather than my earlier good backup, I went into my documents and drilled down to the mobile sync backup and saw that one of the three folders (with giberish as a title) has a lot of information with the date and time I did the backup before going to the store.
    Could I possibly delete the later (factory setting backup) folder and then do a restore to get my good backup onto the iphone? I didn't do that yet in fear that it might mess something else up on the iphone and I wanted to check with you experts here first for guidance and assistance, PLEASE?
    I'll be anxiously awaiting any help you can give!
    Thank you!!

    rwmac22 wrote:
    Hopt and OneOrangeTree, Thank you both very much for replying!!
    It took me a long time to get back to the dissucison group because I tried both of your suggestions which therfore had to do about 4 restores. They take quite a while (about 50 minutes each actually). Your help got me half way there and is very apprecaited! I did manage (with your excellent help) to get most of my backup put onto the replaced iphone. the photos, music, and videos didn't get put over. I think I can move those back over by making sure they are selected in the seperate tabbed screens for the iphone. However, I can't get to those screens because every time I connect the iphone now, it brings up the "set up your phone screen". The one with the "an iphone has been previously synced with this compter" setup as new phone or restore from ....
    Well I did the resotre from 3 times and that page still comes up when I plug in the iphone. Yes, I did close itunes, reboot the PC, and powered off the iphone and then brouhgt it back up before connecting (all several times), but itunes still takes me to the same "setup iphone screen".
    Can you help me to get it to the standard iphone screen and there I will make sure the selected items are checked and do a sync.
    Please know I do appreicate your kind assistance so far and hope someone can get me the rest of the way!
    The "Backup" do not store your Applications, Music, Video's. It saves your settings, your application preferences, etc.

  • What should i do i cant install time machine back up .I need urgent help please :(

    Hey guys ! please help me tomorrow is my exam and I don't have my laptop for study . A while ago I needed windows on my mac and while installing it via boot-camp I somehow managed to wipe whole mac partition even recovery so I was left with only windows on my mac.
    My Condition :- No recovery     PS. I have external recovery on my USB. I saved those files from internet recovery was tired of downloading 1GB every time to get into recovery. )
    No mac OS
    no recovery partition .
    so now the problem is I always thought that I do have a time machine backup on my hard disk so ill just install it simple .
    I tried internet recovery ... then got into recovery ... tried to install my time machine backup and it said .. [ ERROR CREATING RECOVERY PARTITION ]
    I had the time machine backup of OSX mavericks .
    when I tried the reinstall OSX option it said it will download mountain lion . I was like fine download it whatever .. i tried the download but every time I try it get stuck at a point with some error . (maybe cause of my slow internet )
    I have reinstalled the windows 8.1 but I cant use X-CODE on it .
    what should I do
    I want my OSX backup
    my friend have a ISO of Mavericks and mountain lion both will they help ?

    Recovery Partition Creator 3.8
    Recovery Partition – Recreate Without Reinstalling
    Recovery Partition – Recreate Without Reinstalling (Requires Installer)
    When you go to Internet Recovery use Disk Utility to repair the drive and repair permissions. Then erase the partition, formatting it as Mac OS Extended (Journaled). Click the option button and select GUID. Then try to install the OS.

  • Need Urgent Help Please!

    HI There,
    I have been struggling with JavaScript code for days now, and this is my last resort! Please help...send replies or futher information to [email protected]
    I am trying to create a JavaScript slide show with links for Next Slide, Previous Slide and Home Slide.
    Is it possible for you to view my page and tell me what I am doing wrong. I have looked at this page for hours and can't figure it out, I must be missing something or have something in the wrong order, but can't figure it out...please help....thanks...
    I think I need someone to explain the EXACT code for this page as it would appear in the page so it displays correctly.
    If you can figure this out, I have 2 more I need help with too...
    Thanks so much, Much appreciated...but this is a URGENT request. Need a quick answer that will work!
    Any ideas????
    Here is my code:
    <HTML>
    <HEAD>
    <TITLE>JavaScript Slide Show - PhotoAlbum</TITLE>
    <SCRIPT LANGUAGE="JavaScript">
         var PhotoAlbum = new
         Array("bunny_lady.gif","business_lady.gif","running_lady.gif","color_lady.gif")
         var PicIndex=1
         var pictures=PhotoAlbum.length
         function NextImage ( ) {
         if (PicIndex < pictures) {
         PicIndex++
         document.ImgAlbum.src=PhotoAlbum[PicIndex-1]
         function PreviousImage ( ) {
         if (PicIndex > 1) {
         PicIndex--
         document.ImgAlbum.src=PhotoAlbum[PicIndex-1]
         function home ( ) {
         document.ImgAlbum.src=PhotoAlbum[0]
    </SCRIPT>
    </HEAD>
    <BODY BACKGROUND=BACK02.jpg TEXT=Blue>
    <CENTER>
    <H1 ALIGN=Center> The Vacation Photo Album</H1><BR>
    <H3 ALIGN=Center> Click on Previous or Next to view pictures in my Slide Show </H3><HR><HR>
    <IMG SRC=bunny_purse.gif NAME= ImgAlbum Width=400 Height=270>
    <BR>
    <HR>
    [First Image]
    [Previous Image]
    [Next Image]
    </CENTER>
    </BODY>
    </HTML>

    And when you do post to the Javascript forum (you do know that Java != Javascript, right), you might want to try less of a "do my homework for me" approach. I don't know about those forums, but if they're anything like here, they'll expect more effort and more specific questions from you than just "this doesn't work, please fix it completely right now." I also doubt they'll be any more impressed with your urgency than folks here usually are.
    &#12472;

  • One edge animate oam file with sound no work in muse, I need urgent help please

    (I speak spanish and I translate this with google translate, sorry.  Try to understand)(I can read english)
    A sound file oam place it in adobe muse does not work, how can I do. In works right edge Animate and when I preview in the browser looks perfect and 100% working well but when I step by Muse does not work. When I pass the file to Muse, you can see placed in the page design, but when I preview I do not see anything in the file that I placed. When I tried it without sound if it worked but after you add sound and replaced it with the new file (delete the old file and place the new) no lifts. I implementación.oam public with package, and then drag the file created page design muse.

    Try unplugging the AC adapter, removing the battery, then holding the power button down for a minimum of 30 seconds.  Then plug the AC back in and try to power it up.  If it does, good.  If not, repeat the proceedure only time only plug the battery back in.  If this still doesn't work you'll need to send it in to either Toshiba or to some repair shop that has an EProm burner such as http://www.aqstech.com/ as you won't be able to fix it at home.
    And next time DO NOT FLASH FROM WITHIN WINDOWS.  NEVER, EVER, EVER, UNDER ANY CIRCUMSTANCES FLASH A BIOS UNDER WINDOWS.  Always flash a bios from an actual Dos Prompt.  The BIos File from Toshiba provides instructions inside the Archive once you decompress it on creating a Bios Flash CD (and you can use a ReWritable CD-RW so you don't waste a disk) that should be used. 
    If you don't post your COMPLETE model number it's very difficult to assist you. Please try to post in complete sentences with punctuation, capitals, and correct spelling. Toshiba does NOT provide any direct support in these forums. All support is User to User in their spare time.

  • Issue with shared services - Need Urgent Help please!!

    Hello Experts
    One of my customer has installed a new instance of oracle and copied all the schemas and data over to the new instance.
    Now when they bring up shared services, have lost all our provisioning. None of the projects are recognized by shared serices and gets the following error when we try to bring up a user
    'xxxxx' is not a recognized Shared Services project. Please contact your adminstrator
    Is there something we need to do to restore Shared Services to its original state?
    Thanks in advance.
    Regards,
    Sonu
    Edited by: 637223 on Jan 20, 2009 2:19 AM

    hi,
    I doubt that "creating a new instance of oracle and copied all the schemas and data over to the new instance" will register the project with shared service and thats why giving error. Because when you install shared service, it asks you about the database name (oracle in your case) to register with. So even if you overwrite that database by new instance it gives error.
    Have you tried the configuration utilty ? Over there you can provide the new database instanse as your database and configure your shared service. Remember that you need to do a complete configuration of shared service , analytic administration services and analytic services. After configuring, Restart the system.....it should work.
    Hope this helps!
    Regards,
    James

  • I need urgent help please

    I have an iPhone 4, I bought it unlocked and I'm using that plan that MetroPCS has to unlock it and what not.
    There's a sim card in there and everything.
    Yesterday I went over a friend's house and he barely has any signal but that's ok.
    I came home and iMessage was just not activating.
    I've been resetting it and restarting it and I've been trying everything. Everything.
    iMessage just WILL NOT activate. I even made another account.
    Please help me out.

    I tried most of that and it still doesn't work.
    Thing is my iPhone since it's with MetroPCS in the phone setting it says "Unknown" in phone number.
    And when I try to put in my number it says "Phone number could not be saved."
    Also iMessage was working perfectly fine.
    When I sign in with my Apple ID it STILL says waiting for activation but I can still send iMessages?
    Also my number is gereyed out but it's not checked.
    Please help.

  • Need urgent help please PS + Lightroom instalation

    Hi,
    I bought some days ago the Monthly pack of Photoshop and Lightroom (12,99/month)
    Before I had the trial version. A friend of mine told me to unistall ADOBE programs before buying the Photoshop and Lightroom. I did it, or better I thought I did it. When I check in the Application I found them there and when I click on the Uninstal the program pop out a window with the message "you have to download the latest version of Adobe Application Manager". I did it, but when I try to delete the old Photoshop the window pop out again and again, and it doesn't let me download and install the Adobe Creative Cloud I bought
    PLEASE PLEASE ANYONE WHO CAN TELL ME WHAT I HAVE TO DO?

    IreneOO I would recommend you begin by completing the steps listed in CC desktop lists applications as "Up to Date" when not installed - http://helpx.adobe.com/creative-cloud/kb/aam-lists-removed-apps-date.html.  Once those steps are completed then please see Install and update apps - https://helpx.adobe.com/creative-cloud/help/install-apps.html for information on how to install the Adobe Creative applications included with your membership.

  • Serializing an image NEED URGENT HELP (PLEASE!!!)

    HI all ,
    I am trying to serialize an image object . the class has been extended from java.awt.frame.
    when i try to serialize it, i get the following error :-
    Writing aborted: sun.awt.window.wImage not serializable. I want the same
    object in another class to use it.
    can anyone tell me a solution ?
    thanks,
    sam.

    This is because eitehr your supper class or one ore more mambers of your super class are not serializable.
    You will have to write a custom serialization logic for your class (Implement the readObject and writeObject methods) in order to fix this

  • 8800 Scirocco Problem - Need Urgent help please an...

    Got lots of pics and texts over the festive period and lots of those pics of my 18mth old son.
    Noticed over last few days that the phone would take ages to come on after entering the PIN CODE which it accepted. Eventually the Menu screen came on though.
    Today however the battery went so the I charged the phone as usual and then switched on . Screen lit up with NOKIA then requested my PIN CODE which i entered and this then said ACCEPTED and then the Nokia logo and music and then a lit screen and nothing. It stayed like that until eventually the screen light goes out. Then eventually it just switches off. Ive kept repeating this and pressing buttons after the Pin Code to no avail altho it will let me enter numbers on the screen but nothing else really.
    Orange have arranged a replacement tomorrow night. What can I do to retrieve the contact names and numbers and all the photos I have and texts ? I will be so devastated to lose the pics of my little boy which are irreplaceable.
    ANY HELP GRATEFULLY RECEIVED or is this a lost cause ?
    thanks
    AJ

    If the data you want is held on the fone then you may have an issue if the fone wont even boot up.
    How are you having it replaced.
    ie: Are they sending you a replacement by courier with the faulty one being picked up at the same time ? if so it is lost.
    A Nokia engineer may have been able to try and boot up the handset to try and recover the pics etc.
    Try removing the battery for a few minutes to soft reboot the handset back up.... worth a try !
    Message Edited by bandofbrothers on 02-Jan-2008 08:57 AM
    Nokia Lumia 520
     iphone 6 Plus.
    Be happy !!

  • Need urgent  help on J2ME Bluetooth.

    Hi all,
    I really need help about run example code of j2me bluetooth.
    I'm doing a MSc project about bluetooth for delivery system, I just want to use bluetooth to send an object to PDA.
    I,ve tried example on "Bluetooth for Java" with Atinav library but, it couldn't work.
    Do you have an example code that can run on NetBeans 5.0 with
    - AvetanaBluetooth Library (purchased)
    or
    - normal Bluetooth.java library
    I need some examples for develop on it. and also please advice me on how to run and test the programs. I really need urgent help Please help me. my email is [email protected] or [email protected]

    Hi Hari,
    I think that the logic needs to be build up in the DISP part of the Search help exit.
    What you can do is also get the Plant in the search help as an export parameter.
    Then in the Return Tab you can check if the plant = 'AA', delete the data.
    e.g.
          LOOP AT record_tab.
            IF RECORD_TAB-STRING+22(2) = '90'.
              DELETE record_tab INDEX sy-tabix.
            ENDIF.
          ENDLOOP.
    Hope this helps.
    Regards,
    Himanshu
    Message was edited by:
            Himanshu Aggarwal

  • Need urgent help! - I accidentally sycn my friend's iphone account to my company's phone. I could not swich back to my own icloud account because of the icloud password i enter was incorrect. My friend does not use this icloud account since age.

    Need urgent help! - I accidentally sync my friend's iphone account to my company's iphone. I could not switch back to my own icloud account because of the icloud password i enter was incorrect. My friend does not use this icloud account since age only remember 1 password which i already try but iphone shown that " incorrect password" I checked on icloud ID and try to log in but it shown as " You Apple ID was disable for security reason. To enable your account must reset password" but so bad again, the email address that he used to create icloud ID also lock for security reason. May Apple Supporter please help reset it ASAP? I can verify that I am the iphone's owner, as it belong to company's phone.

    Have your company IT department get proof that the company was the
    original purchaser of the iPhone and visit a physical Apple store with
    proof of original purchase, proof that person is company representative,
    and the iPhone - Apple may be able to help. If no physical Apple store,
    contact Apple - you will still need the same items of proof.

  • Switch until release using keyboard...need urgent help

    Hi,
    i have a problem of configuring "switch until release" action using keyboard....
    or is it there no this function at all...
    it seems like all i can do is press to ON and press again to OFF
    anyone can help...
    need Urgent help....
    thank you in advance..

    This isn't possible because of the way operating systems
    handle keyboard events. When you press a keyboard key, it does not register as
    one key down. For whatever your operating system is set for as far as repeating
    characters, it will register that many key down presses. The mouse works
    differently, when you press the mouse it keeps that event "locked"
    until you release the mouse. Because of this, you can not make a switch until
    release using the keyboard; this definition is only for mouse clicks.
    Brandon Vasquez | Software Engineer | Integration Services | National Instruments

  • Need Urgent help, I have made partition hard drive in my mac book and using OS mac

    Need Urgent help, I have made partition hard drive in my mac book and using OS mac & Window8 seperately... for couple of days it works great for both window & OS mac But nowadays, my pc gets restart automatically while using window & even I cant access to my Mac OS...........  I got some error in window (error80070003) ...>>>>> Now how can I format whole drive & recover my Mac book OS.without boot disk.

    I can't find that model. If you open System Profiler in the Utilities folder look for the Model Identifier over in the right hand display. What do you find for the model ID? If your computer supports Internet Recovery here's what to do:
    Install Mavericks, Lion/Mountain Lion Using Internet Recovery
    Be sure you backup your files to an external drive or second internal drive because the following procedure will remove everything from the hard drive.
    Boot to the Internet Recovery HD:
    Restart the computer and after the chime press and hold down the COMMAND-OPTION- R keys until a globe appears on the screen. Wait patiently - 15-20 minutes - until the Recovery main menu appears.
    Partition and Format the hard drive:
    Select Disk Utility from the main menu and click on the Continue button.
    After DU loads select your newly installed hard drive (this is the entry with the mfgr.'s ID and size) from the left side list. Click on the Partition tab in the DU main window.
    Under the Volume Scheme heading set the number of partitions from the drop down menu to one. Click on the Options button, set the partition scheme to GUID then click on the OK button. Set the format type to Mac OS Extended (Journaled.) Click on the Partition button and wait until the process has completed. Quit DU and return to the main menu.
    Reinstall Lion/Mountain Lion. Mavericks: Select Reinstall Lion/Mountain Lion, Mavericks and click on the Install button. Be sure to select the correct drive to use if you have more than one.
    Note: You will need an active Internet connection. I suggest using Ethernet if possible because it is three times faster than wireless.
    This should restore the version of OS X originally pre-installed on the computer. If Mavericks is not installed, then you can reinstall it by re-downloading the Mavericks installer.
    You will need to use Boot Camp Assistant in order to create a new Windows partition, then reinstall Windows.

  • I have Mac mini and there is partition of boot camp but some miss understanding the osx 10.8.2 is deleted and while I m going to recovery mode the portition can not removing and the also cant repaired what I do I need urgent help ???? Please ?????

    I have Mac mini and there is partition of boot camp but some miss understanding the osx 10.8.2 is deleted and while I m going to recovery mode the portition can not removing and the also cant repaired what I do I need urgent help ???? Please ?????

    Do you have a Time Machine backup or clone?  If not,
    all is lost if you have in fact deleted your OSX partition
    and you will have to do a reinstall from Recovery HD
    and install all else.

Maybe you are looking for

  • Create PDF crashes webapplication

    Hi, We have a website that creates PDF-reports using SAP Crystal Reports runtime engine for .NET Framework 4 (64-bit) SP1. The site runs on Windows 2003 R2 x64. The site (w3wp.exe) crashes every now and then when a report is generated in PDF. We cann

  • ORA-00001: unique constraint: How to discard the insert and print error

    Hi: I have a table with a constraint on a single field. The application that is inserting into this table is a multithreaded application. Sometimes two inserts could come with the same value for this field. Is it possible in oracle to configure it to

  • How to find Report Server Name

    Dear All Assalam-o-Alikum i am running the report using "run_report_object" on "Forms [32 Bit] Version 9.0.4.0.19 (Production)". the problem is that i don't know the Name of Report server, can any body can tell me that from where i find the name of r

  • Write message in ABAP inbound proxy

    I put this in the inbound class, where can I find the message?Thanks. WRITE :'TEST 主键冲突'.

  • Block payroll data from cost center for all users except HR team

    Hello Expect, Could any body please advise me  how can I restrict some HR data  in cost center view from FICO,CRM,SRM and other team, Now when other team see cost centers it display all data booked there but my client want to restrict some HR data fr