Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
abhaysingh
Specialist II
Specialist II

Scenario Help

    Hey Every one,

i have One scenario, where i want

Suppose i have data of 1 Month and Currently i am in 2nd Month,

In 1 Month Suppose there are 10000 Record and in 2nd Month there are new 5000 record's with some backdate entries in it, suppose 500 record changes through back date entry...

Now i want to know which entries are changed through back date entries??

Can i show Comparison like

Tab1

Header 1Header 2Header 3
S.No FieldAmount
1ABC12000
2DEF5000

Header 1

Header 2Header 3
S.NoFieldAmount
1ABC10000
2DEF5000

Now i want comparison

Which can show me ABC amount 12000 has been changed to 10000 through BackDate Entry..

Thanks in advance..

1 Solution

Accepted Solutions
sunny_talwar

Something like this may be?

Table:

LOAD @1 as S.No,

    @2 as Field,

    @3 as Amount,

    'Regular' as Type

FROM

[https://community.qlik.com/thread/171502]

(html, codepage is 1252, no labels, table is @1, filters(

Remove(Row, Pos(Top, 1)),

Remove(Row, Pos(Top, 1))

));

Concatenate(Table)

LOAD @1 as S.No,

    @2 as Field,

    @3 as Amount,

    'BackDated' as Type

FROM

[https://community.qlik.com/thread/171502]

(html, codepage is 1252, no labels, table is @2, filters(

Remove(Row, Pos(Top, 1)),

Remove(Row, Pos(Top, 1))

));


Capture.PNG

View solution in original post

4 Replies
sunny_talwar

If I understand your requirement, I think you should be able to flag the new entries (BackDated Entries) and then use that when you are trying to compare BackDate Entries vs. Regular Entries. Does that make sense?

Best,

Sunny

sunny_talwar

Something like this may be?

Table:

LOAD @1 as S.No,

    @2 as Field,

    @3 as Amount,

    'Regular' as Type

FROM

[https://community.qlik.com/thread/171502]

(html, codepage is 1252, no labels, table is @1, filters(

Remove(Row, Pos(Top, 1)),

Remove(Row, Pos(Top, 1))

));

Concatenate(Table)

LOAD @1 as S.No,

    @2 as Field,

    @3 as Amount,

    'BackDated' as Type

FROM

[https://community.qlik.com/thread/171502]

(html, codepage is 1252, no labels, table is @2, filters(

Remove(Row, Pos(Top, 1)),

Remove(Row, Pos(Top, 1))

));


Capture.PNG

abhaysingh
Specialist II
Specialist II
Author

till now i just concatinate 1Month Data and 2Month Data....and putted flag in it to bifurcate it..

But can you pls help me how i can give report like which entries(BackDated) are changed??

sunny_talwar

Use you flag field to differentiate between BackDated fields and regular fields. I am not sure what kind of report you are looking for here.