Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi All,
I have 2 database.One database have data upto 2015 and 2nd database have data after 2015.
I have to count of amount of both db on the basis of agent.But it is showing wrong count of data.
So have to show both datbase data.
*****1st db table
table1:
load
agent,
receipt_date,
amount_due
from table1;
concatination(table1)
********2nd db table
table2:
load
agent,
receipt_date,
outstanding
from table2;
my expression is=
=AGGR(COUNT({<Year={$(=max(Year))}>}outstanding),agent)+AGGR(COUNT({<Year={$(=max(Year))}>}amount_due),agent)
Do you have agent as the dimension? If you do, then I don't see why you need Aggr() here, May be try this:
=Count({<Year={$(=max(Year))}>}outstanding) + Count({<Year={$(=max(Year))}>}amount_due)
If you want to concatenate the tables, you need to use
CONCATENATE (table1)
Why have you used a set expression in both Count() functions to limit the records on the same max Year?
Hi Swuehl,
I used the same concatenate.
I chacked my old DB and found user has done some entry of 2016 in old db.
So its showing due to this.
Thanks for your reply.
Narender
Hi Sunny,
I chacked my old DB and found user has done some entry of 2016 in old db.
So its showing due to this.
Thanks for your reply.
Narender
Awesome, if you have resolved the issue please close this thread by marking a correct and helpful answers.
Best,
Sunny