Hi please help, I have successfully process a cube and everything is working good, but when I browse the cube and explore the count is 4863, and when I compare it with that in the database is 5026. So how do I make SSAS to equal the count on the database.
SELECT COUNT(*) FROM dbo.a_vi_APPurchaseOrders AP WITH (NOLOCK)
INNER JOIN dbo.a_vi_Vendor V
ON V.DCLink = AccountID
INNER JOIN dbo.a_vi_CalendarDate D
ON AP.InvDate = D.PK_Date
GO