Looking for alternative formulas to suppress duplicates through Section Expert

I'm using version 14.0.2.364 CR and having trouble building a customized treatment plan report for our case workers to manage to filter out duplicates. I'll do my best to give a layout and criteria:
GH: CDCLIENT.SAI_ID    STAFF.SORT_NAME
Case #
First Name
Last Name
Home Phone
DOB
Tx Plan Start Date
Tx Plan End Date
CDCLIENT.CASE_NUM
CDCLIENT.FIRST_NAME
CDCLIENT.LAST_NAME
CDCLIENT.PHONE
CDCLIENT.DOB
PLAN.BEG_DATE
PLAN.END_DATE
GF: CDCLIENT.SAI_ID    STAFF.SORT_NAME
The problem is that when pulling data for each client, it will bring forward all their tx plans, but I just want to show the newest one. I was inclined to go to section expert > Select Details > Suppress (No Drill down) and in X-2, put the following:
if {CDCLIENT.CASE_NUM} = next({CDCLIENT.CASE_NUM}) then true else false
This will suppress duplicate records ONLY if I have this sorted by Case #. The problem is, we want to sort by Tx Plan End Date, so case workers can identify which clients are coming up for expiring tx plans. The way the data is stored, I have the first 5 columns from one table, and the last two in another. I also tried to format the field, go to "Commons" on CASE_NUM and choose Suppress (if Duplicated) in combination with the Section Expert, but it was still pulling both if I have it the sort order start at PLAN.END_DATE.
Is there a way to preserve the most recent begin / end date and suppress any duplicates without sorting it by case #?

Jamie Wiseman wrote:
or in the case of your report use this as the suppression formula...sorry again about the original code.
{AZCLPLAN.BEG_DATE} <> maximum ({AZCLPLAN.BEG_DATE}, {CDCLIENT.SAI_ID})
The problem with this suppression is that for each Case Worker (Group) it is only pulling one client record forward, thus suppressing all other multiple unique clients associated with this caseworker.
What my original report (before your suggestions is this):
Case Manager Name (group CDCLIENT.SAI_ID)
CDCLIENT.CASE_NUM
CDCLIENT.FIRST_NAME
CDCLIENT.LAST_NAME
CDCLIENT.PHONE
CDCLIENT.DOB
PLAN.BEG_DATE
PLAN.END_DATE
1
Client A
Client A
111-111-1111
01/01/11
01/01/2013
01/01/2014
2
Client B
Client B
222-222-2222
02/22/22
02/02/2013
02/02/2014
3
Client C
Client C
333-333-3333
03/31/33
03/03/2013
03/03/2014
1
Client A
Client A
111-111-1111
01/01/11
01/01/2014
01/01/2015
4
Client D
Client D
444-444-4444
04/04/44
04/04/2014
04/04/2015
Notice, it finds two records for Client A, because they are an existing client that needs continuous treatment. The caseworker doesn't need to see the older record for Client A, but also needs to see all other unique records.
I basically want it to suppress the first row (older treatment plan) for Client A and have it display like this in conjunction with all other unique clients:
Case Manager Name (group CDCLIENT.SAI_ID)
CLIENT.CASE_NUM
CDCLIENT.FIRST_NAME
CDCLIENT.LAST_NAME
CDCLIENT.PHONE
CDCLIENT.DOB
PLAN.BEG_DATE
PLAN.END_DATE
2
Client B
Client B
222-222-2222
02/22/22
02/02/2013
02/02/2014
3
Client C
Client C
333-333-3333
03/31/33
03/03/2013
03/03/2014
1
Client A
Client A
111-111-1111
01/01/11
01/01/2014
01/01/2015
4
Client D
Client D
444-444-4444
04/04/44
04/04/2014
04/04/2015
What your Section Expert + Summary Code did, was essentially this:
Case Manager Name (group CDCLIENT.SAI_ID)
CLIENT.CASE_NUM
CDCLIENT.FIRST_NAME
CDCLIENT.LAST_NAME
CDCLIENT.PHONE
CDCLIENT.DOB
PLAN.BEG_DATE
PLAN.END_DATE
4
Client D
Client D
444-444-4444
04/04/44
04/04/2014
04/04/2015
Maximum
04/04/2015
Let me know if this is possible.

Similar Messages

  • Photo workflow in Preview- Looking for alternative app

    Hey all,
    I am struggling to view and delete unwanted photos quickly. I do a lot of wildlife photography and recently switched to Mac from Windows.
    I prefer to take lots of images and then go through, using the arrow pad to click through the, and delete any unwanted images, preferable just using the delete key. I don't like preview because it doesn't let me view even close to full screen while still allowing me to click to the next photo, doesn't allow me to zoom easily with the keys, and doesn't skip to the next image when I move one to the trash can. Basically, I am looking for a program similar to windows photo gallery and that I can work straight with the folder and not have to import the images first. Any suggestions on programs? Thank you for the help.
    Ryan Askren
    www.RyanAskren.com

    Any suggestions on programs?
    Possibly Graphic Converter.
    Any suggestions on programs?
    http://www.lemkesoft.com/index.html
    Matt

  • Looking for alternative to Web Start

    Hello all,
    After a couple years of using Java Web Start to deploy our educational software to schools, we're starting to realize that we need a new deployment strategy.
    h4. Here's what we're looking for:
    1. All files should be kept in OS-standard locations for applications, such as Program Files for Windows and Applications for Macs. Deployment of this program should be no harder for admins than for any other application. That means nothing in the User home folder.
    2. Can be installed directly from a CD or USB stick
    3. Can be easily updated as new versions are rolled out (i.e. can download the new jars from our servers).
    Does anyone know anything off the shelf that works like this?
    h4. Here are the problems with what we have now:
    1. Web Start deploys jars (by default) into Users' home folders. This causes the following problems:
    1a. Every user on the computer has to install the program individually.
    1b. System administrators don't have any tools or patters for large-scale deployment of programs into user's home folders.
    1c. Users may have limited space on their home folders.
    1d. Users' home folders may be on networked drives, meaning that all the jars need to be fetched over the network every time they run.
    1e. Users' home folders may be regularly cleaned.
    2. Although Web Start's cache folder can be changed, users may not have write access to those locations, so Web Start will not function for those users if they need to download new jars. While this may be ok for our software alone, it will break any other Web Start application. Web Start cannot have different caches for different applications.
    2b. Also, administrators don't have standard ways to deploy to random cache directories on computers.
    3. There is no easy way to install Web Start applications from CDs. Jar files have to go into the right folders as if they were being downloaded from a server. We have a way of doing this by starting up a Jetty server, but it is not very robust.
    ...however, we still want the ease of Web Start's updating. We want to be able to push out new versions, which admins could update and deploy to their schools the way they do for all other applications, and we also want to support rapid-release cycles for our researchers and people working on the cutting edge of our software. Preferably this would need to involve some kind of jar-differencing, as users should only have to download the smallest subset necessary.
    I'm sure we could write this ourselves, but I imagine we aren't the first people to have these kinds of requirements and problems with Web Start. Has anything been written that seems to approach what we want?
    Thanks,
    Sam

    If you're willing to pay, you might wish to try Denova's JExpress. http://www.denova.com/
    It creates proper installers and has autoupdate support. I've not tried it but it seems to be the off the shelf solution you're looking for.
    You might wish to roll your own by using the open source netx implementation of the jnlp protocol. The basic idea is that you create an installation exe for Windows and package for the Mac wrapped around the netx application. It's a bit fiddly but it does work (I've done this myself). For the time you spend doing this though, you'd probably be better off with JExpress.

  • Looking for alternatives to nethogs

    Hello, I'm looking for a network monitor in the same vein as nethogs but with actual functionality, like the ability to control the connections it sees instead of merely being able to watch. Things like killing the PIDs of the connections, refusing connections and limiting the bandwidth usage of connections if there is nothing like this in one neat package then the best ways to refuse and limit connections one by one on the fly, any suggestions? Thanks as always.

    Thanks for the lists, however they all seem to be limited to visualising also.
    If anyone is interested I did find trickle which handles the control/shaping side of things, so combine it with nethogs or any programs in the links above and you have what you need.

  • Watching television broadcasts online - looking for alternatives to itunes

    Hello,
    How can I watch discovery channel, pbs, national geographic episodes online ? Is it only through purchasing past episodes through Itunes or is there another way ? Is there a service/software that will allow me to watch it as it's being broadcast on television ?
    Thank you,
    Raven Bruce

    Check out season passes in the TV section of the iTunes store. In my case, when I had cable, I always watched just a few TV shows on a few channels. If I buy season passes for only the TV shows I'm interested in that are available in the iTunes store it ends up being cheaper on an annual basis than paying for cable TV every month just to watch a handful of shows.
    The iTunes store usually always has a few pilots or other introductory TV shows available for free. Download some of the free stuff and watch them in iTunes or on your iPod, if you have one, and see if this is an alternative that suits you.
    iMac   Mac OS X (10.4.9)  

  • Looking for alternative to deprecated SortCriterion

    JDev 11.1.1.0.1 + ADF BC + ADF RC
    I have a requirement to be able to access the sort criterion of a rich table from the backing bean of the page that contains the table.
    Currently, I am using the following code I originally wrote in JDeveloper 10.1.3.4 to do so:
    SortCriterion criterion = (SortCriterion)getTechDataTable().getSortCriteria().get(0);
    String sortBy = criterion.getProperty();
    However, the oracle.adf.view.rich.model.SortCriterion object is apparently deprecated, and so is the org.apache.myfaces.trinidad.model.SortCriterion object.
    So, my question is, what alternative is available? As I understand it, objects aren't deprecated unless there is a viable alternative.
    Does anyone know the alternative to use in place of the deprecated oracle.adf.view.rich.model.SortCriterion?
    Thanks All and Happy New Years!

    Where did you find the info that org.apache.myfaces.trinidad.model.SortCriterion is deprecated?
    in the 1.2.11 API docs I found nothing about a deprication.
    For me it looks like you just can use org.apache.myfaces.trinidad.model.SortCriterion instead of oracle.adf.view.rich.model.SortCriterion.
    Timo

  • Looking for alternatives to the iTunes genius bar

    So since the new itunes removed the genius bar, which I had used regularly to find similar songs to ones I owned, does anybody know of an alternative of some sort. Beside Pandora as well

    Microsoft has two applications for backing up and restoring data. These applications are:
    Client-Based ; Windows Server Backup (in Windows Server 2008/2008 R2/2012) and Windows Backup and Restore (in Windows 7/8): These applications are client-base. They can only back up the systems that are installed on them. The storage capabilities
    of these apps are limited (for example, they cannot back up to tape or to cloud).
    Data Protection Manager (now in 2012 edition): DPM is a full feature, enterprise-class backup solution. It supports tapes for backup storage and now in DPM 2012 SP1, it can store backups to Windows Azure (cloud), as well.
    Hope this helps you!
    Please VOTE as HELPFUL if the post helps you and remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading
    the thread.
    I am looking to backup data to Amazon S3.

  • I'm looking for alternatives to black mattes when pillarboxing (4:3 footage shown on a 16:9 screen)

    I have some 4:3 footage I want to put in 16:9 video I'm working on, and some 16:9 footage that I want to do something similar too because the far sides of the images is distracting and unnecessary.  I don't just want to black it out because that seems distracting to me.  I don't want distort the footage to fit 16:9 aspect ratio, either.
    When they're showing 4:3 footage on my local HD news, they often replace the vertical black mattes that you'd usually see with some sort of reflection effect.  It's kind of a stretched-out, blurry reflection of the sides of the 4:3 footage being shown.  It's about the best thing I've seen in terms of not being too distracting.  How would you best achieve that?  Is there a plug-in out there that does this?  Or an effect?
    I'd appreciate any advice (including if you have better suggestions).
    Thanks!

    You can *build* the effect *underneath* the storyline with generators, images, other video, and text (like the commonly seen "HD" in large gothic letters, rotated -90 degrees and set with a low opacity in the "margins".) Where there is transparency in your storyline (pillar- or letterbox), the background elements will show through. Just make sure you have your items that you place underneath the storyline  "stacked" by layer order.
    I think you can find some nice free HD background animations around, if you don't mind signing up for accounts (google "free HD looping backgrounds"). And, you could use the Reveal Title over the Blobs or Underwater Generator in a pinch, just delete the text and stretch them both out so they span the length of your project.

  • Don't like Migration assistant - looking for alternatives

    on my new imac in the first go i used the setup assistant to migrate my macbook data from a time machine drive. this brought me a lot of things into the library that i didn't want to be there in a clean new system. even though i did not choose to migrate my former applications. the library mess led to a problem with installing adobe creative suit on the new system and i had to reinstall from the bundled software.
    this time i did not use the setup assistant to migrate any data and made a clean installation. no problems with adobe creative suite then. yet i have to fix itunes, iphoto, address book and mail manually. i want to copy as least library stuff as possible but of course want to have my music, my photos, etc. can someone advise how to do this step by step? thank you!

    I would be brilliant if we were allowed a checklist of all things wanted (or not) …
    That would take a lot more brilliance (& time) than most users seem to think … at least if it is to make reasonably certain everything needed is migrated! That's because not every application installs everything it needs into the Applications folder or uses Apple's installer to create a BOM (bill of materials) receipt record of what was installed where, nor do they all store all of their per user settings in the same place in a user's home folder.
    For instance, take a close look at your ~/Library folder. If you have installed many apps chances are good you have app support files not just in the Application Support folder but in other folders as well. Complicating things further, neither items in the Application Support folder nor elsewhere are necessarily named for the app they are associated with. In fact, some items are shared among several apps so if any of them are migrated, those items need to be included.
    Something similar applies in the system domain, mostly but not entirely in the root /Library folder.
    There is no way Migration Assistant can sort all this out so it offers the only reasonable choice, the all or nothing one.

  • RAM Slot Not Working for Macbook 2009 - Looking for Alternatives

    Tested RAM slots and found that the second slot (slot closest to interior of computer) is not working properly. Switched both 4gb cards in back slot and the computer would not start up, only would beep....definitely not faulty RAM cards because they both work in the first slot.
    I've researched this on forums briefly, the consensus seems to be logic board replacement.
    I really don't want to invest more money into this older computer - Macbook Pro mid-2009.
    Are there any other troubleshooting options here? I don't think it's the OS and do not have any Time Machine data set up before Mac X nor do I have an partitions set up on an external.
    The computer is not terribly slow but when using Final Cut Pro X it tends to lag. All of the specs for my computer fall in the recommendations for using with FC10
    Could I get an 8gb RAM card for slot 1?
    Any advice would be much appreciated.
    Thanks!

    Does not look like it supports 16 GBs of RAM meaning only 4 GBs/slot.

  • Looking for alternative to restore bkf on recovery console

    Did a backup (sytem files +registry) on xp utility & used it with success before my OS crashed. Now that it's crashed & inaccessible thru safe mode, I'm unable to restore my uncorrupted bkf on my recovery console cd . I can display the file with «dir» , but not getting the appropriate code to activate the restore process using the command, «batch dos_restore.cmd». I get the message that no file can be found. If the situation is a dead end (reinstallation option), is there a freeware (searched internet; no luck) like Stellar Phoenix bfk recovery  that I may have missed ?

    Hello,Maritimer55!
    If your iTunes is the lastest version for ipod?Did you try to reistall iTunes and downlown new one?
    <Edited by Host>

  • Looking for a formula to calculate difference between two values

    So, heres my problem...
    I have a set of incremental values which act as thresholds, 100, 200, 300, so on. Another number is independent and correlates to that set of values, say 148.
    I want another cell which calculates the difference between 148 and 200, but then recognises that when 148 goes over 200 that the next threshold has been met, so then resets and starts calculating the difference between that new number and the next threshold,
    300.
    Is it possible to do this all in the same cell?
    Thanks in advance.

    Re: variable number difference
    With the independent number in cell F8, maybe...
      =IF(MOD(F8,100)=0,0,100-MOD(F8,100))
    Jim Cone
    free & commercial excel programs (n/a xl2013)
    https://jumpshare.com/b/O5FC6LaBQ6U3UPXjOmX2

  • I'm looking for alternatives to PDF Job Ready

    Since it was discontinued I was wondering what else I could use to have clients convert PDFs and send them over.
    Thanks,

    The Enfocus website is:  http://www.enfocus.com/en/
    They are not a subsidiary of Adobe.

  • I'm looking for Adobe Flash Professional CS6 through CC

    Hi everyone,
    I'm trying to looking for downloading Adobe Flash Professional CS6 through CC, but I don't know how it works through CC.
    Can someone tell me where can I download the Adobe Flash Professional CS6.
    Thanks.
    Dan

    Previous via Cloud http://helpx.adobe.com/creative-cloud/help/install-apps.html#previous

  • All of a sudden - Looking for PPPoE Host

    Setup: I am connecting to the internet via Airport Express, through an ISP provided modem. I am using PPPoE as the protocol for connecting to my ISP.
    Problem: The setup was working perfectly for me, when all of a sudden 5 days back, I got the ticker message on my taskbar "Looking for PPPoE host". I went through all the configurations using the airport admin and assistant utility. However, if I connect to the ISP provided modem through the ethernet cable using PPPoE, everything works perfectly. I have been tinkering with this for the past four days, and I have no clue as to what is wrong. For some unknown reason, the airport express base station cannot connect to the ISP (all of a sudden).Please help.
    iBook G4 Mac OS X (10.4.5)
    iBook G4   Mac OS X (10.4.3)  

    Hi,
    I just got a brand new loaner Airport Express from a Friend. It came with the new Firmware and I used it on my ADSL Connection. (Modem to AE).
    Then, one morning, I wake up and connnect my PowerBook to the system. It works fine. I leave for office, return with my Office laptop and install the Airpot Stuff on that too, to connect. Anyway long story short. All works well.
    Now morning arrives again, and nothing working at all. I keep getting the "Looking for PPPoE " message and I know it got nothing to do with my new laptop as I have directly plugged my PB to the modem and it dials/connect without a porblem.
    I checked the setting in the AE panel and thats fine too. I don;t know whats wrong or what to do. I've temporarely switched back to my NetGear Router until I can find out whats wrong with the AE.
    Can you tell me how it's been for you? Were you able to solve the problem?
    Rgds
    Binu.

Maybe you are looking for

  • Deploying an Application to a APEX 3.1.1 Runtime Environment

    Hello Everyone, I'm trying to work out how to deploy an application from a development to runtime environment but am facing a few issues / uncertainty and would appreciate any input/help on this. To begin with here is my environment: - Apex 3.1.1 - T

  • Link not working from submit on form

    When I have this link in my jsp Get ALL Classifieds<BR><BR> and click on it i get this in the address bar: http://localhost:8080/mysite/servlet/getclassifieds?classifiedsearchtype=ALL Everything works fine. However when I put the link into a form lik

  • No client notifications on WCS

    We have two WLC'2 4402(sw 5.2.193.0) and one WCS with sw 5.2.148.0. I have a lot of client warnings in the controllers trap logs but none clients alarms on my WCS. Is there any reason why the WCS does not reports client problems ?

  • CUCM 4.2 integ with SIP Provider

    I have terminated a SIP trunk on the voice gateway and configured it as CUBE. What configuration is required at Call manger 4.2 ?  Regards

  • IMovieHD & Panasonic GS250 & passthrough

    Hello, I have ... an NV-GS250 an NV-S88 (super VHS C) and also a Macbook Pro + iMovie HD v6 I have some footage on the S88 and using the passthrough functionality of the GS250 I want to be able to record into iMovie. I have got 2 cables connecting th