Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
ALERT: QlikView server communication interruptions following Microsoft Windows Domain Controller security updates
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

New Entries

Hi evrebody , Mensuelly i Load a table i want to show the new entries for example

JULY

IDFIRST NAMELAST NAMEDATE OF BIRTH
1JAMESMICKAEL9.06.88
2SHEPARDLISA1.09.93
3LARGES STEPHANIE2.09.92

AUGUST :

IDFIRST NAMELAST NAMEDATE OF BIRTH
1JAMESMICKAEL9.06.88
2SHEPARDLISA1.09.93
3LARGES STEPHANIE
2.09.92
4BENINESS31.07.90

So i want a result like this

NEW ENTRIES :

IDFIRST NAMELAST NAMEDATE OF BIRTH
4BENINESS31.07.90

Thank u for help

Labels (1)
8 Replies
jagan
Partner - Champion III
Partner - Champion III

Hi,

Data:

LOAD

*

FROM AugustData;

Concatenate(AugustData)

LOAD

*,

1 AS NewRecordFlag

FROM JulyData

WHERE NotExists(ID);

Now in the front end if you just want to see new records then use NewRecordFlag as filter and Select 1.

Regards,

Jagan.

Not applicable
Author

Jagan ,

Its doesnt work ,maybe because i have just one file with data of august and july

can you please see the attachement

avinashelite

Hi,

For the above logic to work you should have separate data file like one for today and one of tomorrow . You cannot use it on the same file


Regards,

@vi

tresB
Champion III
Champion III

There is a space between Not and Exists. So try like: WHERE Not Exists(@1);
Not applicable
Author

Hi,

We dont have a other suggestion to resolve my problem

tresB
Champion III
Champion III

As you are renaming the fields, try like:

WHERE Not Exists(@1, Pivot_NumeroSecuriteSocial )

jagan
Partner - Champion III
Partner - Champion III

Hi,

Try like this

Data:

LOAD

*

FROM TableName

WHERE Month='July';

Concatenate(Data)

LOAD

*,

1 AS NewRecordFlag

FROM TableName

WHERE Month='August';

AND  Not Exists(ID);

Now in the front end if you just want to see new records then use NewRecordFlag as filter and Select 1.

Regards,

Jagan.

Not applicable
Author

i dont have any element to identify  the month