Skip to main content
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

8 Replies
jagan
Luminary Alumni
Luminary Alumni

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

tresesco
MVP
MVP

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

tresesco
MVP
MVP

As you are renaming the fields, try like:

WHERE Not Exists(@1, Pivot_NumeroSecuriteSocial )

jagan
Luminary Alumni
Luminary Alumni

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